lib/heroku_deploy/tasks.rb in heroku_deploy-0.1.5 vs lib/heroku_deploy/tasks.rb in heroku_deploy-0.1.6
- old
+ new
@@ -77,18 +77,18 @@
`git checkout master`
puts ""
puts "Creating #{staging_app} Heroku app"
puts ""
- `heroku app:create #{staging_app}`
+ `heroku create #{staging_app}`
`heroku config:add RACK_ENV=staging --app #{staging_app}`
`git remote rm heroku`
`heroku addons:add bundles:single --app #{staging_app}`
puts ""
puts "Creating #{production_app} Heroku app"
puts ""
- `heroku app:create #{production_app}`
+ `heroku create #{production_app}`
`heroku config:add RACK_ENV=production --app #{production_app}`
`git remote rm heroku`
`heroku addons:add bundles:single --app #{production_app}`
puts ""
\ No newline at end of file