aboutsummaryrefslogtreecommitdiffstats
path: root/script/rails-post-deploy
diff options
context:
space:
mode:
authorSeb Bacon <seb.bacon@gmail.com>2012-05-16 11:26:36 +0100
committerSeb Bacon <seb.bacon@gmail.com>2012-05-16 11:26:36 +0100
commit4e6b9e554d2fe8d6eb65bde4fad312ae11a06f8a (patch)
treea8dc990f5979a3844db82c718743f8bdad8d08a4 /script/rails-post-deploy
parent213b8e825a0b94e47eb3c7ca2011c340816fce73 (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-xscript/rails-post-deploy4
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" ]