From 6be636b3964419e51b4de8fdd4c3d9fce4016926 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Sun, 28 Nov 2021 00:10:43 +0000 Subject: [PATCH] fix publish script --- publish.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/publish.sh b/publish.sh index b3a60d9..f3bcc3d 100755 --- a/publish.sh +++ b/publish.sh @@ -1,7 +1,7 @@ #!/usr/bin/env sh # commit and push... -git commit -a -m"$@";git push -u origin master +git add .;git commit -m"$@";git push -u origin master # build the site hugo @@ -14,4 +14,4 @@ echo "ls -lA /hosting/sites/gmgauthier.com" | ssh root@boethius /bin/bash # remove the old build cd .. -# rm -R public +rm -R public