diff options
author | Kazuhiro NISHIYAMA <zn@mbf.nifty.com> | 2017-07-27 00:28:12 +0900 |
---|---|---|
committer | Kazuhiro NISHIYAMA <zn@mbf.nifty.com> | 2017-07-31 21:58:42 +0900 |
commit | 7f89d4e8bf1a8656dee77cc606c53b3a35e4651a (patch) | |
tree | 3a38cc3613d548a73595136dbc68c467b1b413b7 /ci | |
parent | 090eaa7e1b42143ffdb42409aa5d429cbeb3e55d (diff) | |
download | rails-7f89d4e8bf1a8656dee77cc606c53b3a35e4651a.tar.gz rails-7f89d4e8bf1a8656dee77cc606c53b3a35e4651a.tar.bz2 rails-7f89d4e8bf1a8656dee77cc606c53b3a35e4651a.zip |
Use File::NULL instead of "/dev/null"
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/travis.rb | 2 |
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 |