bin/cubicweb-ctl.bat
branch3.5
changeset 3116 8bf500eb01d6
child 4096 871ff503c23e
equal deleted inserted replaced
3115:29262ba01464 3116:8bf500eb01d6
       
     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 --------------------
       
    10 from cubicweb.cwctl import run
       
    11 import sys
       
    12 run(sys.argv[1:])
       
    13 
       
    14 DosExitLabel = """
       
    15 :exit
       
    16 rem """
       
    17 
       
    18