Skip to content

Commit

Permalink
**Must** use IO::NULL for null device
Browse files Browse the repository at this point in the history
  • Loading branch information
unak committed Apr 30, 2019
1 parent c222f4d commit 5a83a1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tool/merger.rb
Expand Up @@ -221,7 +221,7 @@ def commit(file)

def svn_mode?
return @svn_mode if defined?(@svn_mode)
@svn_mode = system("svn info > /dev/null 2>&1")
@svn_mode = system("svn info > #{IO::NULL} 2>&1")
end

# Prints the version of Ruby found in version.h
Expand Down

0 comments on commit 5a83a1d

Please sign in to comment.