This is an automated email from the ASF dual-hosted git repository.
jfeinauer pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-edgent-website.git
The following commit(s) were added to refs/heads/master by this push:
new c7b0ce5 Use "bundle exec" in front of jekyll, to make it more robust
(see
https://stackoverflow.com/questions/6317980/you-have-already-activated-x-but-your-gemfile-requires-y).
c7b0ce5 is described below
commit c7b0ce579681a5e6fba73cf8ed3699367e4fb130
Author: Julian Feinauer <[email protected]>
AuthorDate: Wed Apr 3 18:16:54 2019 +0200
Use "bundle exec" in front of jekyll, to make it more robust (see
https://stackoverflow.com/questions/6317980/you-have-already-activated-x-but-your-gemfile-requires-y).
---
build.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.sh b/build.sh
old mode 100644
new mode 100755
index b494149..6242fb4
--- a/build.sh
+++ b/build.sh
@@ -1,6 +1,6 @@
set -e
cd site
-jekyll build -d ../content_tmp
+bundle exec jekyll build -d ../content_tmp
# Remove dangling references to the DejaVu fonts in the Javadoc stylesheets
sed -i "" "/^@import.*dejavu.css/d; s/'DejaVu[^']*',//g"
../content_tmp/javadoc/*/stylesheet.css
COMMIT_HASH=`git rev-parse HEAD`