Commit 1b3694ff75fe3ee25e7874f70db13701ba384c51
1 parent
1b3ff5cb
Exists in
master
and in
27 other branches
script/production: missed bundle exec in one spot
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
script/production
... | ... | @@ -79,7 +79,7 @@ environments_loop() { |
79 | 79 | RAILS_ENV=$env bundle exec ./script/feed-updater "$action" -i $env |
80 | 80 | done |
81 | 81 | else |
82 | - ./script/delayed_job "$action" | |
82 | + bundle exec ./script/delayed_job "$action" | |
83 | 83 | bundle exec ./script/feed-updater "$action" |
84 | 84 | fi |
85 | 85 | } | ... | ... |