build script should now work under linux if it builds lol
This commit is contained in:
8
build.py
8
build.py
@@ -13,7 +13,11 @@ else:
|
|||||||
if choice in yes:
|
if choice in yes:
|
||||||
os.system("scons && scons target=template_release && cd project && godot")
|
os.system("scons && scons target=template_release && cd project && godot")
|
||||||
elif choice in no:
|
elif choice in no:
|
||||||
os.system(
|
if os.name == 'nt':
|
||||||
"scons && scons target=template_release && godot project\project.godot")
|
os.system(
|
||||||
|
"scons && scons target=template_release && godot project\project.godot")
|
||||||
|
else:
|
||||||
|
os.system(
|
||||||
|
"scons && scons target=template_release && godot project/project.godot")
|
||||||
else:
|
else:
|
||||||
sys.stdout.write("Please respond with 'yes' or 'no'")
|
sys.stdout.write("Please respond with 'yes' or 'no'")
|
||||||
|
Reference in New Issue
Block a user