Skip to content

Commit

Permalink
fix env var check
Browse files Browse the repository at this point in the history
  • Loading branch information
joshlarsen committed Mar 5, 2021
1 parent 4f38c9d commit 4872bdb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ bundle install --jobs 4 --retry 3

echo "Building Jekyll site..."

if [ -z $YARN_ENV ]; then
if [ ! -z $YARN_ENV ]; then
echo "Installing javascript packages..."
yarn
fi

Expand Down

0 comments on commit 4872bdb

Please sign in to comment.