mstrch0c 2017-04-14 11:05:51 +02:00
commit bc8ff5f44a
6520 changed files with 426985 additions and 0 deletions

19
windows/start_lp.py Normal file
View file

@ -0,0 +1,19 @@
#!/usr/bin/python
import os
import sys
# determine the absolute path to the disk
scriptDir = os.path.dirname(os.path.realpath(sys.argv[0]))
print "%s" % scriptDir
args = ""
i = 1
while (i < len(sys.argv)):
if (len(args)):
args = "%s %s" % (args, sys.argv[i])
else:
args = sys.argv[1]
i = i + 1
sys.exit(os.system("python %s/configure_lp.py -load %s" % (scriptDir, args)))