diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2012-05-16 14:42:47 +0100 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2012-05-23 09:15:49 +0100 |
commit | 2e69a53ff5c3e15dd5a7a0fcb5f8fcedf3d6f778 (patch) | |
tree | 363e917f7b7da4ef0e431aadf0338246c2062817 /script/rails-post-deploy | |
parent | 599fc689b1df50eb1c6a7233af153693e23c46e3 (diff) |
Introduce ability to install multiple, layered themes.
Diffstat (limited to 'script/rails-post-deploy')
-rwxr-xr-x | script/rails-post-deploy | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/script/rails-post-deploy b/script/rails-post-deploy index b0c0acdc5..370819c67 100755 --- a/script/rails-post-deploy +++ b/script/rails-post-deploy @@ -81,6 +81,16 @@ else bundle exec bundle install fi +if [ -n "$OPTION_THEME_URLS" ] +then + echo $OPTION_THEME_URLS + for THEME in $OPTION_THEME_URLS + do + script/plugin install --force $THEME + done +fi + +# Old version of the above, for backwards compatibility if [ -n "$OPTION_THEME_URL" ] then script/plugin install --force $OPTION_THEME_URL |