SCons: Disable server platform as it does not build
See #8361. [ci skip]
This commit is contained in:
parent
4fb5b1a211
commit
1b2e09355e
|
@ -12,6 +12,9 @@ def get_name():
|
|||
|
||||
def can_build():
|
||||
|
||||
# Doesn't build against Godot 3.0 for now, disable to avoid confusing users
|
||||
return False
|
||||
|
||||
if (os.name != "posix" or sys.platform == "darwin"):
|
||||
return False
|
||||
|
||||
|
|
Loading…
Reference in New Issue