From 61238885d450a2c7ff2440ca7192aa10702085d8 Mon Sep 17 00:00:00 2001 From: flupe Date: Wed, 17 Mar 2021 12:06:30 +0100 Subject: [PATCH] updated config for nixos laptop --- src/Config.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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