allow / after app bundle name

This commit is contained in:
2024-09-11 18:01:50 -05:00
parent da7f9abf05
commit 67b5be9baf

View File

@@ -8,6 +8,9 @@ import os
app_bundle = sys.argv[1]
dry_run = '--dry' in sys.argv
if app_bundle.endswith('/'):
app_bundle = app_bundle[0:-1]
app_binary = join(app_bundle, 'Contents/MacOS', basename(app_bundle).split(".")[0])
app_frameworks = join(app_bundle, 'Contents/Frameworks')