summaryrefslogtreecommitdiffstats
path: root/deploy.sh
diff options
context:
space:
mode:
Diffstat (limited to 'deploy.sh')
-rwxr-xr-xdeploy.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/deploy.sh b/deploy.sh
index c93f144..db92d6d 100755
--- a/deploy.sh
+++ b/deploy.sh
@@ -44,7 +44,7 @@ then
fi
echo "** Building site:"
-bundle exec jekyll build -s blog
+bundle exec jekyll build -s blog
buildres=$?
source "deploy_$target.rc"
@@ -52,5 +52,5 @@ source "deploy_$target.rc"
if [[ $buildres == 0 ]];
then
echo "** Deploying to: $deploy_to_path"
- rsync -avzz blog/_site/* $deploy_to_path
+ rsync -avzz _site/* $deploy_to_path
fi