mirror of
https://gitlab.com/openlp/packaging.git
synced 2024-12-22 13:02:50 +00:00
[Windows] Update all references to the ISS file after renaming it
This commit is contained in:
parent
87364a9c7a
commit
fa3832de1f
@ -493,10 +493,10 @@ class WindowsBuilder(object):
|
|||||||
Create an InnoSetup file pointing to the branch being built.
|
Create an InnoSetup file pointing to the branch being built.
|
||||||
"""
|
"""
|
||||||
self._print('Creating Inno Setup file...')
|
self._print('Creating Inno Setup file...')
|
||||||
input = open(os.path.join(self.script_path, 'OpenLP-2.0.iss.default'), 'r').read()
|
input = open(os.path.join(self.script_path, 'OpenLP.iss.default'), 'r').read()
|
||||||
output = input.replace('%(branch)s', self.branch_path)
|
output = input.replace('%(branch)s', self.branch_path)
|
||||||
output = output.replace('%(display_version)s', self.version)
|
output = output.replace('%(display_version)s', self.version)
|
||||||
outfile = open(os.path.join(self.script_path, 'OpenLP-2.0.iss'), 'w')
|
outfile = open(os.path.join(self.script_path, 'OpenLP.iss'), 'w')
|
||||||
outfile.write(output)
|
outfile.write(output)
|
||||||
outfile.close()
|
outfile.close()
|
||||||
|
|
||||||
@ -532,7 +532,7 @@ class WindowsBuilder(object):
|
|||||||
"""
|
"""
|
||||||
self._print('Running Inno Setup...')
|
self._print('Running Inno Setup...')
|
||||||
os.chdir(self.script_path)
|
os.chdir(self.script_path)
|
||||||
innosetup = Popen((self.innosetup, os.path.join(self.script_path, 'OpenLP-2.0.iss'), '/q'))
|
innosetup = Popen((self.innosetup, os.path.join(self.script_path, 'OpenLP.iss'), '/q'))
|
||||||
code = innosetup.wait()
|
code = innosetup.wait()
|
||||||
if code != 0:
|
if code != 0:
|
||||||
raise Exception('Error running Inno Setup')
|
raise Exception('Error running Inno Setup')
|
||||||
|
Loading…
Reference in New Issue
Block a user