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

Fixed packaging, which didn't work on windows.

--HG--
extra : convert_revision : svn%3Ac306627e-7827-47d3-bdf0-9a457c9553a1/trunk%40286
This commit is contained in:
hsoft
2009-12-30 16:52:46 +00:00
parent 838f8ae352
commit 70af8541da
4 changed files with 6 additions and 5 deletions

View File

@@ -37,9 +37,10 @@ def main():
print "Qt packaging only works under Windows."
return
add_to_pythonpath('.')
os.chdir('qt')
add_to_pythonpath('qt')
os.chdir(op.join('qt', edition))
os.system('python build.py')
os.chdir('..')
os.chdir(op.join('..', '..'))
if __name__ == '__main__':
main()