1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 22:51:39 +00:00

Moved run templates from root folder to cocoa/qt subfolders.

--HG--
rename : run_template_cocoa.py => cocoa/run_template.py
rename : run_template_qt.py => qt/run_template.py
This commit is contained in:
Virgil Dupras
2012-08-15 07:33:01 -07:00
parent 1c15b0114b
commit 8ac035c8a9
3 changed files with 2 additions and 2 deletions

10
cocoa/run_template.py Normal file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env python3
import sys
import os
def main():
return os.system('open "{{app_path}}"')
if __name__ == '__main__':
sys.exit(main())