author | Aurelien Campeas <aurelien.campeas@logilab.fr> |
Tue, 04 May 2010 15:46:36 +0200 | |
branch | stable |
changeset 5462 | a37127c8bf23 |
parent 4096 | 871ff503c23e |
child 5499 | 2a5cc708c2a0 |
permissions | -rw-r--r-- |
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 |