From 52a9793686f15351045bfe7862255e1826a3d48a Mon Sep 17 00:00:00 2001 From: Tomas Groth Date: Wed, 10 Apr 2019 21:06:38 +0200 Subject: [PATCH] Use the right path variable --- builders/windows-builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builders/windows-builder.py b/builders/windows-builder.py index b844531..284f97d 100644 --- a/builders/windows-builder.py +++ b/builders/windows-builder.py @@ -186,7 +186,7 @@ class WindowsBuilder(Builder): for fragment in fragments: tree.append(fragment) self._print_verbose('Writing new WiX file') - with open(os.path.join(self.config_path, 'OpenLP.wxs'), 'wb') as f: + with open(os.path.join(config_dir, 'OpenLP.wxs'), 'wb') as f: f.write(tostring(tree, encoding='utf-8', xml_declaration=True, pretty_print=True)) def _run_wix_tools(self):