aboutsummaryrefslogtreecommitdiffstats
path: root/script/rails-post-deploy
diff options
context:
space:
mode:
authorSeb Bacon <seb.bacon@gmail.com>2012-03-13 11:19:50 +0000
committerSeb Bacon <seb.bacon@gmail.com>2012-03-13 11:19:50 +0000
commit6294bddb67defe5b3a0bfc5a17a15576024d2c1f (patch)
tree8a29cf6dd8c35f8aff654672336ce389710e719a /script/rails-post-deploy
parente77e9a1d4016ef9fdc387529a623afb04d886a3c (diff)
in production mode, ensure we skip development and test gems
Diffstat (limited to 'script/rails-post-deploy')
-rwxr-xr-xscript/rails-post-deploy2
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