mirror of
				https://github.com/arsenetar/dupeguru-cocoa.git
				synced 2025-09-11 17:58:17 +00:00 
			
		
		
		
	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()) |