Commit 1b3694ff75fe3ee25e7874f70db13701ba384c51

Authored by Antonio Terceiro
1 parent 1b3ff5cb

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,7 +79,7 @@ environments_loop() {
79 RAILS_ENV=$env bundle exec ./script/feed-updater "$action" -i $env 79 RAILS_ENV=$env bundle exec ./script/feed-updater "$action" -i $env
80 done 80 done
81 else 81 else
82 - ./script/delayed_job "$action" 82 + bundle exec ./script/delayed_job "$action"
83 bundle exec ./script/feed-updater "$action" 83 bundle exec ./script/feed-updater "$action"
84 fi 84 fi
85 } 85 }