Skip to content

Commit

Permalink
Merge pull request #234 from clintoncwolfe/cw/fix-windows-match
Browse files Browse the repository at this point in the history
Loosen platform regex to allow 64 or 32 bit mingw
  • Loading branch information
PrajaktaPurohit authored Mar 29, 2022
2 parents 2073582 + 91da93e commit e6ba621
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mixlib/shellout.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class ShellOut
READ_SIZE = 4096
DEFAULT_READ_TIMEOUT = 600

if RUBY_PLATFORM =~ /mswin|mingw32|windows/
if RUBY_PLATFORM =~ /mswin|mingw|windows/
require_relative "shellout/windows"
include ShellOut::Windows
else
Expand Down

0 comments on commit e6ba621

Please sign in to comment.