We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaa7d28 commit 924174bCopy full SHA for 924174b
quickpkg
@@ -169,7 +169,7 @@ def appNameAndVersion(app_path):
169
(app_name, app_ext) = os.path.splitext(os.path.basename(app_path))
170
app_identifier = info_plist.get("CFBundleIdentifier")
171
app_version = info_plist.get("CFBundleShortVersionString")
172
- if app_version is None:
+ if app_version is None or app_version == "":
173
app_version = info_plist.get("CFBundleVersion")
174
return (app_name, app_identifier, app_version)
175
@@ -449,7 +449,6 @@ if __name__ == "__main__":
449
pkgcmd.extend(["--keychain", args.keychain])
450
if args.cert:
451
pkgcmd.extend(["--cert", args.cert])
452
-
453
result = cmdexec(pkgcmd)
454
455
logger(result["stdout"], 1)
0 commit comments