aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/test-bot.rb
diff options
context:
space:
mode:
authorMike McQuaid2015-11-19 13:29:40 +0000
committerMike McQuaid2015-11-19 13:30:07 +0000
commit5388f8c8f8dc7b5b8ceacb46529b283be98aea06 (patch)
treede78ab49291e302b0263e94b7707feda264a55b3 /Library/Homebrew/cmd/test-bot.rb
parent1a8f6388a683ba51f6487d4d209c9ce57fc353a6 (diff)
downloadbrew-5388f8c8f8dc7b5b8ceacb46529b283be98aea06.tar.bz2
Travis: don't run cleanup at all.
Diffstat (limited to 'Library/Homebrew/cmd/test-bot.rb')
-rw-r--r--Library/Homebrew/cmd/test-bot.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/test-bot.rb b/Library/Homebrew/cmd/test-bot.rb
index 886e908c8..ad679b7ec 100644
--- a/Library/Homebrew/cmd/test-bot.rb
+++ b/Library/Homebrew/cmd/test-bot.rb
@@ -647,7 +647,7 @@ module Homebrew
git "rebase", "--abort"
git "reset", "--hard"
git "checkout", "-f", "master"
- git "clean", "-ffdx" unless ENV["TRAVIS"]
+ git "clean", "-ffdx"
pr_locks = "#{HOMEBREW_REPOSITORY}/.git/refs/remotes/*/pr/*/*.lock"
Dir.glob(pr_locks) { |lock| FileUtils.rm_rf lock }
end
@@ -880,7 +880,7 @@ module Homebrew
if ARGV.include?("--ci-master") || ARGV.include?("--ci-pr") \
|| ARGV.include?("--ci-testing")
- ARGV << "--cleanup" if ENV["JENKINS_HOME"] || ENV["TRAVIS"]
+ ARGV << "--cleanup" if ENV["JENKINS_HOME"]
ARGV << "--junit" << "--local"
end
if ARGV.include? "--ci-master"