Add shebang line to post_deploy shell script

pull/1104/head
Rick Carlino 2019-02-05 12:20:13 -06:00
parent d314aa6d0c
commit d338670d8e
2 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,3 @@
worker: bundle exec rake jobs:work
rabbit_workers: bin/rails r lib/rabbit_workers.rb
web: bundle exec passenger start -p $PORT -e $RAILS_ENV --max-pool-size 2
release: bundle exec rake api:build_assets
worker: bundle exec rake jobs:work
rabbit_workers: bin/rails r lib/rabbit_workers.rb
web: bundle exec passenger start -p $PORT -e $RAILS_ENV --max-pool-size 2

2
bin/post_compile 100644 → 100755
View File

@ -1 +1,3 @@
#!/bin/sh
bundle exec rake api:build_assets