Skip to content

Commit

Permalink
Update ultraschall_functions_HelperFunctions_Module.lua
Browse files Browse the repository at this point in the history
Fix for M1 Macs
  • Loading branch information
rstockm committed Feb 22, 2021
1 parent 2c8a0e2 commit ae51d2a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1277,7 +1277,7 @@ function ultraschall.IsOS_Mac()
local Os, bits

-- check for os and bits
if retval:match("OSX")~=nil or retval:match("macOS-arm64")~=nil then Os=true
if retval:match("OSX")~=nil or retval:match("macOS")~=nil then Os=true
else
Os=false
end
Expand Down

0 comments on commit ae51d2a

Please sign in to comment.