Pārlūkot izejas kodu

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.
Ibrahn Sahir 7 gadi atpakaļ
vecāks
revīzija
9f172b634d
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      platform/server/detect.py

+ 1 - 1
platform/server/detect.py

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