add a runner file

This commit is contained in:
Kilian Valkhof 2010-03-23 14:56:30 +01:00
parent 27d3fd782c
commit e96327edbd
2 changed files with 8 additions and 1 deletions

7
trimage Normal file
View file

@ -0,0 +1,7 @@
#!/usr/bin/env python
import subprocess
import os, sys
if __name__ == "__main__":
path = "/usr/local/share/trimage/trimage.py" #yeah so this isn't the nices tway...
subprocess.call([sys.executable, path] + sys.argv[1:])