Skip to content

Commit 82ed88d

Browse files
authored
Merge pull request #19 from Shopify/handle-missing-platform
Do not error on unsupported platform
2 parents 2e3f958 + 9d1e9f6 commit 82ed88d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

extconf.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ def to_mib(bytes)
3939
end
4040

4141
unless File.exist?("#{__dir__}/vendor/#{ruby_platform}")
42-
log("[fatal] no vendor directory found for #{ruby_platform}, cannot use binaryen-rb on this platform yet")
43-
exit 1
42+
log("[warning] no vendor directory found for #{ruby_platform}, cannot use binaryen-rb on this platform yet")
43+
exit
4444
end
4545

4646
if enable_config("strip", true)

lib/binaryen/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

33
module Binaryen
4-
VERSION = "1.1.6.13"
4+
VERSION = "1.1.6.14"
55
BINARYEN_VERSION = "version_116"
66
end

0 commit comments

Comments
 (0)