Path needs to be absolute

This commit is contained in:
Raoul Snyman 2016-12-12 12:00:31 +02:00
parent 19b5a489cf
commit 6fe60a1c94
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ class WindowsBuilder(Builder):
self._run_command([self.portableinstaller_exe, self.portable_dest_path],
'Error running PortableApps Installer')
portable_exe_name = 'OpenLPPortable_%s.paf.exe' % self.portable_version
portable_exe_path = os.path.join(self.portable_dest_path, '..', portable_exe_name)
portable_exe_path = os.path.abspath(os.path.join(self.portable_dest_path, '..', portable_exe_name))
self._print_verbose('... Portable Build: {}'.format(portable_exe_path))
if os.path.exists(portable_exe_path):
move(portable_exe_path, os.path.join(self.dist_path, portable_exe_name))