frankfurter/deploy/before_restart
2016-04-11 14:40:23 +01:00

17 lines
475 B
Ruby
Executable File

#!/usr/bin/env ruby
oldrev, newrev = ARGV
def run(cmd)
exit($CHILD_STATUS.exitstatus) unless system "umask 002 && #{cmd}"
end
run 'foreman run bundle install --deployment --without development:test'
run 'whenever --update-crontab'
tasks = []
num_migrations = `git diff #{oldrev} #{newrev} --diff-filter=A --name-only -z db/migrate`.split("\0").size
tasks << 'db:migrate' if num_migrations > 0
tasks << 'rates:load'
run "foreman run bundle exec rake #{tasks.join(' ')}"