From d394aa8a15e8b544c8fff5cfa675f6e930974498 Mon Sep 17 00:00:00 2001 From: fufesou Date: Tue, 30 Apr 2024 17:42:28 +0800 Subject: [PATCH] feat: msi reg QuietUninstallString (#7873) Signed-off-by: fufesou --- res/msi/preprocess.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/res/msi/preprocess.py b/res/msi/preprocess.py index d4ac7635d..74a7fb68e 100644 --- a/res/msi/preprocess.py +++ b/res/msi/preprocess.py @@ -326,6 +326,9 @@ def gen_custom_ARPSYSTEMCOMPONENT_True(args, dist_dir): lines_new.append( f'{indent}\n' ) + lines_new.append( + f'{indent}\n' + ) vs = g_version.split(".") major, minor, build = vs[0], vs[1], vs[2]