1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 14:41:39 +00:00

Fixed help.locale path references under Qt and fixed packaging to include the locale folder.

This commit is contained in:
Virgil Dupras
2011-11-30 11:06:08 -05:00
parent d3918724c0
commit 66303a2076
7 changed files with 17 additions and 41 deletions

View File

@@ -55,8 +55,11 @@ def package_windows(edition, dev):
print_and_do("upx --best \"{0}\"".format(op.join(distdir, lib)))
help_path = op.join('build', 'help')
print("Copying {0} to dist\\help".format(help_path))
print("Copying {} to dist\\help".format(help_path))
shutil.copytree(help_path, op.join(distdir, 'help'))
locale_path = op.join('build', 'locale')
print("Copying {} to dist\\locale".format(locale_path))
shutil.copytree(locale_path, op.join(distdir, 'locale'))
# AdvancedInstaller.com has to be in your PATH
# this is so we don'a have to re-commit installer.aip at every version change