From d4443e43d6887cce12905891cd3b7df52a3262bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Jaenisch?= Date: Sat, 12 Aug 2017 21:18:51 +0200 Subject: [PATCH] Execute build command using bundle. (#6274) Merge pull request 6274 --- docs/_docs/deployment-methods.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_docs/deployment-methods.md b/docs/_docs/deployment-methods.md index ebf8bf12..3146b372 100644 --- a/docs/_docs/deployment-methods.md +++ b/docs/_docs/deployment-methods.md @@ -47,7 +47,7 @@ TMP_GIT_CLONE=$HOME/tmp/myrepo PUBLIC_WWW=/var/www/myrepo git clone $GIT_REPO $TMP_GIT_CLONE -jekyll build -s $TMP_GIT_CLONE -d $PUBLIC_WWW +bundle exec jekyll build -s $TMP_GIT_CLONE -d $PUBLIC_WWW rm -Rf $TMP_GIT_CLONE exit ```