lib/hatchet/git_app.rb in heroku_hatchet-1.1.9 vs lib/hatchet/git_app.rb in heroku_hatchet-1.2.0
- old
+ new
@@ -17,10 +17,12 @@
def git_repo
"git@heroku.com:#{name}.git"
end
- def push!
+ def push_without_retry!
+ puts `pwd`
+ puts `ls`
output = `git push #{git_repo} master 2>&1`
if !$?.success?
raise FailedDeploy.new(self, "Buildpack: #{@buildpack.inspect}\nRepo: #{git_repo}\n#{output}") unless @allow_failure
end
return output