Skip to content

Commit 05b9ba2

Browse files
committed
made naming scheme more functional
1 parent 34de057 commit 05b9ba2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quickpkg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ if __name__ == "__main__":
187187

188188
logger("Name: %s, ID: %s, Version: %s" %(app_name, app_identifier, app_version))
189189

190-
pkg_name = "%s-%s.pkg" % (app_name, app_version)
190+
pkg_name = "{name}-{version}.pkg".format(name=app_name, version=app_version, identifier=app_identifier)
191191

192192
pkgcmd = ["/usr/bin/pkgbuild",
193193
"--component", app_path,

0 commit comments

Comments
 (0)