Skip to content

Commit

Permalink
Fix os: 'unix' in emsdk_manifest.json to mean OSX or LINUX.
Browse files Browse the repository at this point in the history
  • Loading branch information
juj committed Jan 11, 2016
1 parent 4c3ea85 commit 01f5271
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emsdk
Original file line number Diff line number Diff line change
Expand Up @@ -919,7 +919,7 @@ class Tool:
if hasattr(self, 'os'):
if self.os == 'all':
return True
if (WINDOWS and 'win' in self.os) or (LINUX and 'linux' in self.os) or (OSX and 'osx' in self.os):
if (WINDOWS and 'win' in self.os) or (LINUX and ('linux' in self.os or 'unix' in self.os)) or (OSX and ('osx' in self.os or 'unix' in self.os)):
return True
else:
return False
Expand Down

0 comments on commit 01f5271

Please sign in to comment.