diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2012-05-16 11:26:36 +0100 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2012-05-16 11:26:36 +0100 |
commit | 4e6b9e554d2fe8d6eb65bde4fad312ae11a06f8a (patch) | |
tree | a8dc990f5979a3844db82c718743f8bdad8d08a4 /script/rails-post-deploy | |
parent | 213b8e825a0b94e47eb3c7ca2011c340816fce73 (diff) |
Use "bundle exec bundle install" (ugh) as a workaround for the fact that in deployment mode, the xapian-full gem gets recompiled every time
Diffstat (limited to 'script/rails-post-deploy')
-rwxr-xr-x | script/rails-post-deploy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/script/rails-post-deploy b/script/rails-post-deploy index 4edabc9a7..b0c0acdc5 100755 --- a/script/rails-post-deploy +++ b/script/rails-post-deploy @@ -76,9 +76,9 @@ fi if [ "$OPTION_STAGING_SITE" = "0" ] then - bundle install --without development:test --deployment + bundle exec bundle install --without development:test --deployment else - bundle install + bundle exec bundle install fi if [ -n "$OPTION_THEME_URL" ] |