From 38b4d8f2c42ddc238687e06159d65bae8c936739 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Fri, 6 Jan 2023 20:59:32 +0100 Subject: [PATCH] Ignore self reg warning --- packaging/msi/create_windows_msi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/msi/create_windows_msi.py b/packaging/msi/create_windows_msi.py index ad595179db..a13238f836 100644 --- a/packaging/msi/create_windows_msi.py +++ b/packaging/msi/create_windows_msi.py @@ -82,7 +82,7 @@ def build(dist_path: Path, filename: Path): manageoldcuradlg_loc = work_loc.joinpath("CustomizeCuraDlg.wxs") build_loc = work_loc.joinpath("build_msi") - heat_command = ["heat", "dir", f"{dist_loc.as_posix()}\\", "-dr", "APPLICATIONFOLDER", "-cg", "NewFilesGroup", + heat_command = ["heat", "dir", f"{dist_loc.as_posix()}\\", "-dr", "APPLICATIONFOLDER", "-cg", "NewFilesGroup", "-sw5150", "-gg", "-g1", "-sf", "-srd", "-var", "var.CuraDir", "-t", f"{exclude_components_loc.as_posix()}", "-out", f"{heat_loc.as_posix()}"] subprocess.call(heat_command)