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

Fixed appdata logic which was broken on OS X.

This commit is contained in:
Virgil Dupras
2013-11-10 11:05:03 -05:00
parent 12cf9b800b
commit 76f45fb5a6
8 changed files with 33 additions and 19 deletions

View File

@@ -317,7 +317,6 @@ def build_pe_modules(ui):
def build_normal(edition, ui, dev, conf):
print("Building dupeGuru {0} with UI {1}".format(edition.upper(), ui))
add_to_pythonpath('.')
build_help(edition)
print("Building dupeGuru")
if edition == 'pe':
build_pe_modules(ui)
@@ -325,6 +324,9 @@ def build_normal(edition, ui, dev, conf):
build_cocoa(edition, dev)
elif ui == 'qt':
build_qt(edition, dev, conf)
# We used to build the help first, but autodoc building messes up with pythonpaths and makes our
# whole build process buggy. We do it last.
build_help(edition)
def main():
options = parse_args()