From df50123c058bd1e76c1b3230b4f27531f0adfe07 Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Tue, 24 Nov 2020 15:40:57 -0500 Subject: [PATCH] createmsi: move to generic packaging directory We might want to create other dedicated packaging scripts, and put them all in one directory. --- {msi => packaging}/License.rtf | 0 {msi => packaging}/createmsi.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename {msi => packaging}/License.rtf (100%) rename {msi => packaging}/createmsi.py (99%) diff --git a/msi/License.rtf b/packaging/License.rtf similarity index 100% rename from msi/License.rtf rename to packaging/License.rtf diff --git a/msi/createmsi.py b/packaging/createmsi.py similarity index 99% rename from msi/createmsi.py rename to packaging/createmsi.py index eca4493ea..e6c47f4e5 100644 --- a/msi/createmsi.py +++ b/packaging/createmsi.py @@ -337,7 +337,7 @@ class PackageGenerator: subprocess.check_call([os.path.join(wixdir, 'light'), '-ext', 'WixUIExtension', '-cultures:en-us', - '-dWixUILicenseRtf=msi\\License.rtf', + '-dWixUILicenseRtf=packaging\\License.rtf', '-out', self.final_output, self.main_o])