1
0
mirror of https://github.com/arsenetar/dupeguru-cocoa.git synced 2024-11-01 15:15:56 +00:00
dupeguru-cocoa/run.py
Virgil Dupras ca2c327c74 Make xcodebuild the last build step
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.
2017-03-12 22:53:10 -04:00

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())