mirror of
https://github.com/arsenetar/dupeguru-cocoa.git
synced 2024-11-01 15:15:56 +00:00
ca2c327c74
This way, once we've built dupeGuru using "make" a first time, we can work on XCode stuff and build from XCode directly without having to go through the whole build again.
10 lines
164 B
Python
10 lines
164 B
Python
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
import os
|
|
|
|
def main():
|
|
return os.system('open "build/Release/dupeGuru.app"')
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main()) |