Skip to content
This repository has been archived by the owner on Jul 10, 2023. It is now read-only.

Commit

Permalink
fix: export debug build by default
Browse files Browse the repository at this point in the history
  • Loading branch information
joelgomes1994 committed Mar 28, 2022
1 parent 41b92d4 commit c0fffd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def export(_target=None):
targetPath.mkdir()

print("> Exporting for target:", name)
args = ["godot", "--export", name, "--no-window", projectFile.as_posix()]
args = ["godot", "--export-debug", name, "--no-window", projectFile.as_posix()]
print(" > Running Godot export:", " ".join(args))
subprocess.call(args)

Expand Down

0 comments on commit c0fffd2

Please sign in to comment.