Remove quotes from dmgfile...

This commit is contained in:
Tomas Groth 2021-11-08 12:09:11 +00:00
parent a6b0afc86d
commit 92edc0d679
1 changed files with 1 additions and 1 deletions

View File

@ -338,7 +338,7 @@ class MacOSXBuilder(Builder):
dmg_name = 'OpenLP-{version}.dmg'.format(version=self.version)
dmg_title = '"OpenLP {version}"'.format(version=self.version)
self.dmg_file = '"{dmgfile}"'.format(dmgfile=os.path.join(self.work_path, 'dist', dmg_name))
self.dmg_file = os.path.join(self.work_path, 'dist', dmg_name)
# Remove dmg if it exists.
if os.path.exists(self.dmg_file):
os.remove(self.dmg_file)