Skip to content

Commit

Permalink
Updated make_app.py
Browse files Browse the repository at this point in the history
Fixed a bug that crashes make_app.py before printing an error.
  • Loading branch information
Superredstone authored and fifty-six committed Dec 12, 2023
1 parent 17de623 commit 68b11ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
exe = publish / "Scarab"

if app_dir.suffix != ".app":
print("Error: " + app_dir + " is not an .app folder.")
print("Error: " + str(app_dir) + " is not an .app folder.")
exit(-1)

if not app_dir.exists():
Expand Down

0 comments on commit 68b11ee

Please sign in to comment.