diff options
author | Robin Houston <robin.houston@gmail.com> | 2012-09-06 15:00:05 +0100 |
---|---|---|
committer | Robin Houston <robin.houston@gmail.com> | 2012-09-06 15:00:05 +0100 |
commit | 006717f1ac39557e50052bb5755d430a1fa100ee (patch) | |
tree | d07209a4ad2003111c03948d537127d40dda9799 /script/rails-post-deploy | |
parent | 537b97ff069cac999da3ca80ede77fedc79e39ff (diff) | |
parent | 74531a783a8ea62a80596b435bd151cec2bf82c8 (diff) |
Merge branch 'master' of git.mysociety.org:/data/git/public/alaveteli
Conflicts:
spec/controllers/api_controller_spec.rb
Diffstat (limited to 'script/rails-post-deploy')
-rwxr-xr-x | script/rails-post-deploy | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/script/rails-post-deploy b/script/rails-post-deploy index 193d0bbec..977805eb5 100755 --- a/script/rails-post-deploy +++ b/script/rails-post-deploy @@ -82,21 +82,7 @@ fi bundle install $bundle_install_options -if [ -n "$OPTION_THEME_URLS" ] -then - for THEME in "${OPTION_THEME_URLS[@]}" - do - echo "Installing $THEME..." - script/plugin install --force $THEME - done -fi - -# Old version of the above, for backwards compatibility -if [ -n "$OPTION_THEME_URL" ] -then - echo "Installing $OPTION_THEME_URL using deprecated THEME_URL..." - script/plugin install --force $OPTION_THEME_URL -fi +bundle exec rake themes:install # upgrade database bundle exec rake db:migrate #--trace |