Skip to content

Commit

Permalink
Install bundle dependencies before releasing, in case there's a rake …
Browse files Browse the repository at this point in the history
…task that's needed in a gem
  • Loading branch information
Andrew Nordman committed Jan 16, 2019
1 parent 76f2c53 commit 7b64217
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ cat << EOF > ~/.gem/credentials
EOF
set -x

echo "Installing dependencies..."
bundle install > /dev/null 2>&1

echo "Running gem release task..."
release_command="${RELEASE_COMMAND:-rake release}"
exec $release_command

0 comments on commit 7b64217

Please sign in to comment.