diff --git a/src/Config.hs b/src/Config.hs index eafa6a1..38aa05e 100644 --- a/src/Config.hs +++ b/src/Config.hs @@ -9,14 +9,14 @@ import Route config :: Achille.Config config = def - { deployCmd = Just "rsync -avzzr ~/dev/acatalepsie/_site/ --chmod=755 acatalepsie:/var/www/html" + { deployCmd = Just $ "rsync -avzzr " <> root <> "_site/ --chmod=755 acatalepsie:/var/www/html" , contentDir = root <> "content" , outputDir = root <> "_site" , cacheFile = root <> ".cache" , ignore = [ "**/*.agdai" , "**/*~" ] - } where root = "/home/flupe/dev/acatalepsie/" + } where root = "/home/flupe/dev/site/" ropts :: Pandoc.ReaderOptions