aboutsummaryrefslogtreecommitdiffstats
path: root/ci
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2017-08-02 21:59:42 +0930
committerGitHub <noreply@github.com>2017-08-02 21:59:42 +0930
commit869cb93de12141425b73f43e93f6e3730147b0ed (patch)
tree3df573074150a25e08af189b5091b3e20e10aa5f /ci
parent686261f0df560cd720231365499ac116f2024a32 (diff)
parent7f89d4e8bf1a8656dee77cc606c53b3a35e4651a (diff)
downloadrails-869cb93de12141425b73f43e93f6e3730147b0ed.tar.gz
rails-869cb93de12141425b73f43e93f6e3730147b0ed.tar.bz2
rails-869cb93de12141425b73f43e93f6e3730147b0ed.zip
Merge pull request #29958 from znz/file-null
Use File::NULL instead of "/dev/null"
Diffstat (limited to 'ci')
-rwxr-xr-xci/travis.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/travis.rb b/ci/travis.rb
index 6e002d4a5b..8339e0d08b 100755
--- a/ci/travis.rb
+++ b/ci/travis.rb
@@ -14,7 +14,7 @@ commands = [
]
commands.each do |command|
- system("#{command} > /dev/null 2>&1")
+ system(command, [1, 2] => File::NULL)
end
class Build