The command-line flags for Jekyll for the source directory and the destination directory are now specified in the docs for the deployment methods.

Fixes #1157.
This commit is contained in:
Josh Branchaud 2013-05-29 12:00:21 +02:00 committed by Parker Moore
parent 2defdad3ae
commit 19ec56c494
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ TMP_GIT_CLONE=$HOME/tmp/myrepo
PUBLIC_WWW=/var/www/myrepo PUBLIC_WWW=/var/www/myrepo
git clone $GIT_REPO $TMP_GIT_CLONE git clone $GIT_REPO $TMP_GIT_CLONE
jekyll build $TMP_GIT_CLONE $PUBLIC_WWW jekyll build -s $TMP_GIT_CLONE -d $PUBLIC_WWW
rm -Rf $TMP_GIT_CLONE rm -Rf $TMP_GIT_CLONE
exit exit
{% endhighlight %} {% endhighlight %}