aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLouise Crow <louise.crow@gmail.com>2012-12-17 12:34:07 +0000
committerLouise Crow <louise.crow@gmail.com>2012-12-17 12:34:07 +0000
commit7b88dbc1de13c19498af88c8e8477eab436f0a0d (patch)
tree31e4b2255c5039d98bcb939bba3294a2deaa034f
parentcfd458339e46bdeeaed8a4fe0ab27c3cafcd05f5 (diff)
Don't install the develop or development group of gems in travis.
-rwxr-xr-xscript/rails-post-deploy4
1 files changed, 4 insertions, 0 deletions
diff --git a/script/rails-post-deploy b/script/rails-post-deploy
index 67752b0bc..abc7fab41 100755
--- a/script/rails-post-deploy
+++ b/script/rails-post-deploy
@@ -77,6 +77,10 @@ then
bundle_install_options="--without development:test --deployment"
fi
+if [ "$TRAVIS" = "true" ]
+then
+ bundle_install_options="--without development develop --deployment"
+fi
bundle install $bundle_install_options
bundle exec rake themes:install