Blame view

init.bat 531 Bytes
4253cbec   root   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  @echo off

  

  rem -------------------------------------------------------------

  rem  Yii command line init script for Windows.

  rem

  rem  @author Qiang Xue <qiang.xue@gmail.com>

  rem  @link http://www.yiiframework.com/

  rem  @copyright Copyright (c) 2008 Yii Software LLC

  rem  @license http://www.yiiframework.com/license/

  rem -------------------------------------------------------------

  

  @setlocal

  

  set YII_PATH=%~dp0

  

  if "%PHP_COMMAND%" == "" set PHP_COMMAND=php.exe

  

  "%PHP_COMMAND%" "%YII_PATH%init" %*

  

  @endlocal