diff options
| author | Jack Nagel | 2014-07-11 20:27:57 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-07-11 20:27:57 -0500 |
| commit | a5ccee64ba4d59b9395cc7c8ea6a086e7b7d38fe (patch) | |
| tree | 9f981fbb359e7b6362a5d287dc83d9c4f57d9eb3 /Library | |
| parent | 3495aa3f24fe19345b54a22f47257042497bec1a (diff) | |
| download | homebrew-a5ccee64ba4d59b9395cc7c8ea6a086e7b7d38fe.tar.bz2 | |
Remove intermediate variable
Diffstat (limited to 'Library')
| -rwxr-xr-x | Library/Contributions/cmd/brew-test-bot.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Library/Contributions/cmd/brew-test-bot.rb b/Library/Contributions/cmd/brew-test-bot.rb index b32de6ffd..27ccfe4ac 100755 --- a/Library/Contributions/cmd/brew-test-bot.rb +++ b/Library/Contributions/cmd/brew-test-bot.rb @@ -101,8 +101,7 @@ class Step end Process.wait(pid) - end_time = Time.now - @time = end_time - start_time + @time = Time.now - start_time success = $?.success? @status = success ? :passed : :failed |
