test-bot: print out git commands on Jenkins.

This commit is contained in:
Mike McQuaid 2016-07-15 13:14:52 +01:00
parent ec1da60941
commit d34b93fa1c

View File

@ -262,6 +262,7 @@ module Homebrew
end end
def git(*args) def git(*args)
puts "#{@repository}: git #{args.join " "}" if ENV["JENKINS_HOME"]
@repository.cd { Utils.popen_read("git", *args) } @repository.cd { Utils.popen_read("git", *args) }
end end