diff options
| author | Jack Nagel | 2014-06-03 10:30:55 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-06-03 11:04:06 -0500 |
| commit | 104b725c88d92799df62cef090d0fadfdd83a8ed (patch) | |
| tree | e25da6e731e94885cb850e687f2819f9deece274 /Library | |
| parent | 4a5462cfa8fa641a14499d34cb0af76f65e83aed (diff) | |
| download | brew-104b725c88d92799df62cef090d0fadfdd83a8ed.tar.bz2 | |
String isn't enumerable in 1.9+
Diffstat (limited to 'Library')
| -rwxr-xr-x | Library/Contributions/cmd/brew-test-bot.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Contributions/cmd/brew-test-bot.rb b/Library/Contributions/cmd/brew-test-bot.rb index fa0075884..efcc8a984 100755 --- a/Library/Contributions/cmd/brew-test-bot.rb +++ b/Library/Contributions/cmd/brew-test-bot.rb @@ -84,7 +84,7 @@ class Step end def has_output? - @output and @output.any? + @output && !@output.empty? end def run |
