1
0
mirror of https://github.com/arsenetar/dupeguru-cocoa.git synced 2025-07-13 02:13:20 +00:00
Virgil Dupras cdb14d7e5f Add package.py
with other minor fixes
2017-03-11 20:44:18 -05:00

10 lines
156 B
Python

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