diff options
Diffstat (limited to 'script/rails-post-deploy')
-rwxr-xr-x | script/rails-post-deploy | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/script/rails-post-deploy b/script/rails-post-deploy index 6e2c88d28..5b9bd8014 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 --binstubs else - bundle install + bundle exec bundle install --binstubs fi if [ -n "$OPTION_THEME_URL" ] @@ -87,6 +87,6 @@ then fi # upgrade database -rake db:migrate #--trace +bundle exec rake db:migrate #--trace |