From 68b11ee8596fbfe1ea31e420d49190181788a8a6 Mon Sep 17 00:00:00 2001 From: Patrick <56410215+Superredstone@users.noreply.github.com> Date: Tue, 12 Dec 2023 21:46:35 +0100 Subject: [PATCH] Updated make_app.py Fixed a bug that crashes make_app.py before printing an error. --- make_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make_app.py b/make_app.py index 5422d7b8..3c5400c6 100644 --- a/make_app.py +++ b/make_app.py @@ -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():