Add SDK items for linux and fix an issue with extra tools being shown on linux.

This commit is contained in:
Jukka Jylänki
2014-07-07 13:52:45 +03:00
parent d762333294
commit 6600588cc7
2 changed files with 13 additions and 1 deletions

2
emsdk
View File

@@ -643,7 +643,7 @@ class Tool:
if WINDOWS and (hasattr(self, 'windows_url') or hasattr(self, 'windows_install_path')):
return True
if LINUX or OSX and hasattr(self, 'unix_url'):
if (LINUX or OSX) and hasattr(self, 'unix_url'):
return True
return hasattr(self, 'url')