Skip to content

Commit

Permalink
Add a small hook to run bundle install --local.
Browse files Browse the repository at this point in the history
  • Loading branch information
envygeeks committed Jan 31, 2013
1 parent 3d7d331 commit b1c71fd
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions hooks/after_cd_install_vendored_gems
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/env bash
# From @mpapis

if
which bundle >/dev/null &&
[[ -d vendor/cache ]] &&
[[ -f Gemfile ]]
then
bundle install --local
fi

0 comments on commit b1c71fd

Please sign in to comment.