1
0
mirror of https://github.com/arsenetar/dupeguru-cocoa.git synced 2025-09-11 17:58:17 +00:00

10 lines
164 B
Python
Raw Normal View History

2017-03-11 20:18:27 -05:00
#!/usr/bin/env python3
import sys
import os
def main():
return os.system('open "build/Release/dupeGuru.app"')
2017-03-11 20:18:27 -05:00
if __name__ == '__main__':
sys.exit(main())