From a1edc0e4f154bc0246889d0f4bfd3c0a16431f1e Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Wed, 13 Jan 2010 16:02:59 +0000 Subject: [PATCH] Fixed packaging on windows. It didn't correctly find help files. --- qt/me/build.py | 2 +- qt/pe/build.py | 2 +- qt/se/build.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/qt/me/build.py b/qt/me/build.py index 72a6657f..7f062946 100644 --- a/qt/me/build.py +++ b/qt/me/build.py @@ -34,7 +34,7 @@ print_and_do("python C:\\Python26\\pyinstaller\\Build.py dgme.spec") os.remove('verinfo_tmp') print_and_do("del dist\\*90.dll") # They're in vcredist, no need to include them -print_and_do("xcopy /Y /S /I help\\dupeguru_me_help dist\\help") +print_and_do("xcopy /Y /S /I ..\\..\\help_me\\dupeguru_me_help dist\\help") aicom = '"\\Program Files\\Caphyon\\Advanced Installer\\AdvancedInstaller.com"' shutil.copy('installer.aip', 'installer_tmp.aip') # this is so we don'a have to re-commit installer.aip at every version change diff --git a/qt/pe/build.py b/qt/pe/build.py index 1ce0b6f5..7e7cb71d 100644 --- a/qt/pe/build.py +++ b/qt/pe/build.py @@ -36,7 +36,7 @@ print_and_do("python C:\\Python26\\pyinstaller\\Build.py dgpe.spec") os.remove('verinfo_tmp') print_and_do("del dist\\*90.dll") # They're in vcredist, no need to include them -print_and_do("xcopy /Y /S /I help\\dupeguru_pe_help dist\\help") +print_and_do("xcopy /Y /S /I ..\\..\\help_pe\\dupeguru_pe_help dist\\help") aicom = '"\\Program Files\\Caphyon\\Advanced Installer\\AdvancedInstaller.com"' shutil.copy('installer.aip', 'installer_tmp.aip') # this is so we don'a have to re-commit installer.aip at every version change diff --git a/qt/se/build.py b/qt/se/build.py index 71ee19e5..75ef3c11 100644 --- a/qt/se/build.py +++ b/qt/se/build.py @@ -36,7 +36,7 @@ print_and_do("python C:\\Python26\\pyinstaller\\Build.py dgse.spec") os.remove('verinfo_tmp') print_and_do("del dist\\*90.dll") # They're in vcredist, no need to include them -print_and_do("xcopy /Y /S /I help\\dupeguru_help dist\\help") +print_and_do("xcopy /Y /S /I ..\\..\\help_se\\dupeguru_help dist\\help") aicom = '"\\Program Files\\Caphyon\\Advanced Installer\\AdvancedInstaller.com"' shutil.copy('installer.aip', 'installer_tmp.aip') # this is so we don'a have to re-commit installer.aip at every version change