diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2012-03-13 11:19:50 +0000 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2012-03-13 11:19:50 +0000 |
commit | 6294bddb67defe5b3a0bfc5a17a15576024d2c1f (patch) | |
tree | 8a29cf6dd8c35f8aff654672336ce389710e719a /script/rails-post-deploy | |
parent | e77e9a1d4016ef9fdc387529a623afb04d886a3c (diff) |
in production mode, ensure we skip development and test gems
Diffstat (limited to 'script/rails-post-deploy')
-rwxr-xr-x | script/rails-post-deploy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/rails-post-deploy b/script/rails-post-deploy index 2bf098c5d..6e2c88d28 100755 --- a/script/rails-post-deploy +++ b/script/rails-post-deploy @@ -76,7 +76,7 @@ fi if [ "$OPTION_STAGING_SITE" = "0" ] then - bundle install --deployment + bundle install --without development:test --deployment else bundle install fi |