diff options
author | Louise Crow <louise.crow@gmail.com> | 2013-01-15 16:05:25 +0000 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2013-01-15 16:05:25 +0000 |
commit | d1cac849b5c74e4f0d35b193ad24eed1d6b66af6 (patch) | |
tree | cb153b82b3e1d451be2d299b6114c99b6610b173 /script/rails-post-deploy | |
parent | f25df72186683e54dd10fd5aa94e1e26dff8ea92 (diff) | |
parent | 7cc8cae3a669fc5de91d6bc23812c265e8af4c93 (diff) |
Merge branch 'release/0.6.9'
Diffstat (limited to 'script/rails-post-deploy')
-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 |