mirror of
https://github.com/godotengine/godot
synced 2024-11-02 14:43:31 +00:00
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
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue