Allow the server platform to build on linux again.

Fixed a logic error in platform/server/detect.py that prevented building
the server platform on linux.
This commit is contained in:
Ibrahn Sahir 2018-10-30 12:38:55 +00:00
parent bfd1f09ac5
commit 9f172b634d

View file

@ -19,7 +19,7 @@ def get_program_suffix():
def can_build():
if (os.name != "posix" or sys.platform != "darwin"):
if (os.name != "posix"):
return False
return True