Skip to content

Commit

Permalink
create_release: Absolute path to make
Browse files Browse the repository at this point in the history
  • Loading branch information
IAmMoltony committed Jan 13, 2024
1 parent f9571b0 commit 83c1fbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/create_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ def main():
if not no_clean:
if not be_quiet:
print("Cleaning binaries")
subprocess.run(["make", "clean"], check=True)
subprocess.run(["/usr/bin/make", "clean"], check=True)

if not be_quiet:
print("Compiling game")
subprocess.run(["make"], check=True)
subprocess.run(["/usr/bin/make"], check=True)

shutil.copyfile("bin/ds-craft.nds", f"releases/ds-craft-{get_game_version()}.nds")
print(f"Saved to releases/ds-craft-{get_game_version()}.nds")
Expand Down

0 comments on commit 83c1fbd

Please sign in to comment.