Skip to content

Commit

Permalink
fix from Jay Scott for windows native bug
Browse files Browse the repository at this point in the history
  • Loading branch information
monkstone committed Dec 22, 2019
1 parent 99d724c commit 49d9faa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/jruby_art/native_folder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ def name
return format(LINUX_FORMAT, ARM32) if /arm/.match?(bit)
end
if WIN_PATTERNS.any? { |pat| pat =~ os }
return format(WINDOWS_FORMAT, '64') if /64/.match?(bit)
return format(WINDOWS_FORMAT, '32') if /32/.match?(bit)
return format(WIN_FORMAT, '64') if /64/.match?(bit)
return format(WIN_FORMAT, '32') if /32/.match?(bit)
end
raise 'Unsupported Architecture'
end
Expand Down

0 comments on commit 49d9faa

Please sign in to comment.