diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2017-07-04 15:46:38 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-07-04 15:46:38 +0900 |
| commit | c6bd8ceab7244ef913dda99e678e1b97b8fe1a7a (patch) | |
| tree | 4f7c3eaa6d6f00f2a2671128a00823576918e67d /test | |
| parent | e9cdc880082afd037342a81b3aa31a1924f98734 (diff) | |
| parent | 277391e1b292d369ed47999c7ac1c45f3e0be699 (diff) | |
| download | mruby-c6bd8ceab7244ef913dda99e678e1b97b8fe1a7a.tar.gz mruby-c6bd8ceab7244ef913dda99e678e1b97b8fe1a7a.zip | |
Merge pull request #3726 from mruby/stable
mruby-1.3.0
Diffstat (limited to 'test')
| -rw-r--r-- | test/bintest.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/bintest.rb b/test/bintest.rb index 8f56cc0ad..12971a9d9 100644 --- a/test/bintest.rb +++ b/test/bintest.rb @@ -3,7 +3,7 @@ require 'test/assert.rb' def cmd(s) case RbConfig::CONFIG['host_os'] - when /mswin(?!ce)|mingw|cygwin|bccwin/ + when /mswin(?!ce)|mingw|bccwin/ "bin\\#{s}.exe" else "bin/#{s}" @@ -12,7 +12,7 @@ end def shellquote(s) case RbConfig::CONFIG['host_os'] - when /mswin(?!ce)|mingw|cygwin|bccwin/ + when /mswin(?!ce)|mingw|bccwin/ "\"#{s}\"" else "'#{s}'" @@ -21,7 +21,7 @@ end ARGV.each do |gem| case RbConfig::CONFIG['host_os'] - when /mswin(?!ce)|mingw|cygwin|bccwin/ + when /mswin(?!ce)|mingw|bccwin/ gem = gem.gsub('\\', '/') end |
