3116
|
1 |
@echo off |
|
2 |
rem = """-*-Python-*- script |
|
3 |
rem -------------------- DOS section -------------------- |
|
4 |
rem You could set PYTHONPATH or TK environment variables here |
|
5 |
python -x "%~f0" %* |
|
6 |
goto exit |
|
7 |
|
|
8 |
""" |
|
9 |
# -------------------- Python section -------------------- |
4096
|
10 |
import sys |
|
11 |
from os.path import join, dirname |
|
12 |
sys.path.insert(0, join(dirname(__file__), '..', '..')) |
3116
|
13 |
from cubicweb.cwctl import run |
|
14 |
run(sys.argv[1:]) |
|
15 |
|
|
16 |
DosExitLabel = """ |
|
17 |
:exit |
|
18 |
rem """ |
|
19 |
|
|
20 |
|