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:
parent
bfd1f09ac5
commit
9f172b634d
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue