author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Thu, 17 Jun 2010 09:10:14 +0200 | |
branch | stable |
changeset 5763 | 1bdddb7460a9 |
parent 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 |
5499
2a5cc708c2a0
fixed bug of non-normalized path under Windows, that broke the reload mechanism
egazoni
parents:
4096
diff
changeset
|
11 |
from os.path import join, dirname, normpath |
2a5cc708c2a0
fixed bug of non-normalized path under Windows, that broke the reload mechanism
egazoni
parents:
4096
diff
changeset
|
12 |
sys.path.insert(0, normpath(join(dirname(__file__), '..', '..'))) |
3116 | 13 |
from cubicweb.cwctl import run |
14 |
run(sys.argv[1:]) |
|
15 |
||
16 |
DosExitLabel = """ |
|
17 |
:exit |
|
18 |
rem """ |
|
19 |
||
20 |