diff options
-rwxr-xr-x | s2i/bin/assemble | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/s2i/bin/assemble b/s2i/bin/assemble index b82b59b..6d7616c 100755 --- a/s2i/bin/assemble +++ b/s2i/bin/assemble @@ -23,7 +23,11 @@ echo "---> Installing application source..." cp -Rf /tmp/src/. ./ echo "---> Building application from source..." +set -ex if test -f Gemfile; then + bundle config path $(pwd)/.gem + bundle config + bundle install bundle exec jekyll build else jekyll build |