1
0
mirror of https://github.com/arsenetar/dupeguru-cocoa.git synced 2026-02-12 07:31:39 +00:00

Add package.py

with other minor fixes
This commit is contained in:
Virgil Dupras
2017-03-11 20:44:18 -05:00
parent 08eac3844e
commit cdb14d7e5f
6 changed files with 32 additions and 8 deletions

10
run.py Normal file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env python3
import sys
import os
def main():
return os.system('open "build/dupeGuru.app"')
if __name__ == '__main__':
sys.exit(main())