Allow deploys with zero JS file changes

This commit is contained in:
R. Tyler Croy 2012-04-06 13:11:05 -07:00
parent 06f6b54aff
commit 5c67ce4306
1 changed files with 1 additions and 1 deletions

View File

@ -27,6 +27,6 @@ end
desc "Deploy to heroku"
task :deploy => [:compile] do
sh "git commit js/resin-app.deploy.js -m 'Committing the production .js file for deployment'"
sh "git commit js/resin-app.deploy.js -m 'Committing the production .js file for deployment' || true"
sh "git push heroku master"
end