From 50cf4834ae00074e3fc93b021977c1cd14b2b79c Mon Sep 17 00:00:00 2001 From: Markus Heurung Date: Thu, 7 Mar 2024 12:05:12 +0100 Subject: [PATCH] fix(Rakefile): use correct source for rsync --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 6fd880e..bf3abce 100644 --- a/Rakefile +++ b/Rakefile @@ -46,7 +46,7 @@ end desc "deploy site" task :deploy => [:build] do - sh "rsync -az --delete ./_site srv.muhh.lol:/var/www/htdocs/muhh.lol/" + sh "rsync -az --delete ./_site/ srv.muhh.lol:/var/www/htdocs/muhh.lol/" end task :default => [:clean, :build, :serve]