diff options
author | Louise Crow <louise.crow@gmail.com> | 2013-01-15 15:19:05 +0000 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2013-01-15 15:19:05 +0000 |
commit | 5f3418307d6087f848eb1fdbf4531d67416121df (patch) | |
tree | cb7dad95b6b21db3b237efabc9d0fa37879adc10 /script/rails-post-deploy | |
parent | 07121bf22b0929e03215f02b8740c3979ae6c872 (diff) | |
parent | 7cc8cae3a669fc5de91d6bc23812c265e8af4c93 (diff) |
Merge branch 'release/0.6.9' into wdtk
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 |