diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2012-05-23 01:53:38 -0700 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2012-05-23 01:53:38 -0700 |
commit | 8300398b9f4666c102d6c205f1b94e00b8017014 (patch) | |
tree | bfecc1ae98ff202e4063714c267afde0692f1ca7 /script | |
parent | 20b2a3c493d19b1ea66ba2605053af05f0595f7f (diff) | |
parent | 820e124c20865c17eeea2e17c5bb82da620ada5b (diff) |
Merge pull request #493 from sebbacon/feature/merge-wombleton-sparkly-admin-css
Merge @wombleton sparkly admin css
Diffstat (limited to 'script')
-rwxr-xr-x | script/rails-post-deploy | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/script/rails-post-deploy b/script/rails-post-deploy index b0c0acdc5..575b995f9 100755 --- a/script/rails-post-deploy +++ b/script/rails-post-deploy @@ -81,8 +81,19 @@ else bundle exec bundle install fi +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 |