mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-15 02:37:49 -06:00
use template strings
This commit is contained in:
parent
bd57b43931
commit
9000730ce7
1 changed files with 2 additions and 2 deletions
|
@ -153,6 +153,6 @@ if __name__ == "__main__":
|
|||
app_name = f"{args.app_name}.app"
|
||||
|
||||
if args.build_pkg:
|
||||
create_pkg_installer(args.filename + ".pkg", args.dist_path, cura_version, app_name)
|
||||
create_pkg_installer(f"{args.filename}.pkg", args.dist_path, cura_version, app_name)
|
||||
if args.build_dmg:
|
||||
create_dmg(args.filename + ".dmg", args.dist_path, args.source_path, app_name)
|
||||
create_dmg(f"{args.filename}.dmg", args.dist_path, args.source_path, app_name)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue