mirror of
https://github.com/arsenetar/dupeguru-cocoa.git
synced 2025-07-13 02:13:20 +00:00
10 lines
156 B
Python
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()) |