diff options
author | Louise Crow <louise.crow@gmail.com> | 2012-12-17 12:34:07 +0000 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2012-12-17 12:34:07 +0000 |
commit | 7b88dbc1de13c19498af88c8e8477eab436f0a0d (patch) | |
tree | 31e4b2255c5039d98bcb939bba3294a2deaa034f | |
parent | cfd458339e46bdeeaed8a4fe0ab27c3cafcd05f5 (diff) |
Don't install the develop or development group of gems in travis.
-rwxr-xr-x | script/rails-post-deploy | 4 |
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 |