1
0
mirror of https://github.com/arsenetar/dupeguru-cocoa.git synced 2026-03-09 09:31:38 +00:00

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.
This commit is contained in:
Virgil Dupras
2017-03-12 22:53:10 -04:00
parent 29428c19d9
commit ca2c327c74
4 changed files with 9 additions and 9 deletions

2
run.py
View File

@@ -4,7 +4,7 @@ import sys
import os
def main():
return os.system('open "build/dupeGuru.app"')
return os.system('open "build/Release/dupeGuru.app"')
if __name__ == '__main__':
sys.exit(main())