Skip to content

Commit

Permalink
Cherrypick changes from #8
Browse files Browse the repository at this point in the history
  • Loading branch information
EdricChan03 authored Feb 15, 2020
1 parent 65eda83 commit a0bde56
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,10 @@ if [[ "$SHOW_BUNDLE_LOG" = true || ($SHOW_BUNDLE_LOG == 1) ]]; then
bundle install
else
# Prevent installed dependencies messages from clogging the log
bundle install > /dev/null 2>&1
if [[ 0 -ne $(bundle install > /tmp/bundle-install.log 2>&1; echo $?) ]]; then
echo "Failed to install gem bundles:"
cat /tmp/bundle-install.log
fi
fi

# Check if jekyll is installed
Expand Down

0 comments on commit a0bde56

Please sign in to comment.