1
0
mirror of https://github.com/arsenetar/dupeguru-cocoa.git synced 2026-03-17 12:31:38 +00:00

More Cleanups

- Remove seperate hscommon submodule, and use the files in the dupeguru submodule
- Update package.py and build.py to account for hscommon submodule removal
- Fix one more warning in UI code
- Update .gitignore to ignore visual studio code folder
This commit is contained in:
2020-12-29 21:36:05 -06:00
parent 2eada16210
commit caac8df893
6 changed files with 10 additions and 7 deletions

View File

@@ -6,6 +6,11 @@
from argparse import ArgumentParser
# Modify the python path so the hscommon files in the dupeguru submodule may be used
import sys
import os
sys.path.append(os.path.join(os.getcwd(), 'dupeguru'))
from hscommon.build import setup_package_argparser, package_cocoa_app_in_dmg
def parse_args():
@@ -14,7 +19,7 @@ def parse_args():
return parser.parse_args()
def package_cocoa(args):
app_path = 'build/dupeGuru.app'
app_path = 'build/Release/dupeGuru.app'
package_cocoa_app_in_dmg(app_path, '.', args)
def main():