Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
28 righe
561 B
28 righe
561 B
5 anni fa
|
@echo off
|
||
|
|
||
|
if "" == "%1" goto errorCreate
|
||
|
if "" == "%2" goto errorCreate
|
||
|
|
||
|
call ant -Dlayouttpl.name=%1 -Dlayouttpl.display.name=%2 create
|
||
|
|
||
|
cd %1-layouttpl
|
||
|
|
||
|
rem call ant deploy
|
||
|
|
||
|
cd ..
|
||
|
|
||
|
goto end
|
||
|
|
||
|
:errorCreate
|
||
|
echo.
|
||
|
echo Usage: create.bat hello-world "Hello World"
|
||
|
echo.
|
||
|
echo The first hello-world is your layouttpl id. A new directory will be created
|
||
|
echo based on the layouttpl id.
|
||
|
echo.
|
||
|
echo The second "Hello World" is the layouttpl's display name. The quotation marks
|
||
|
echo are only needed because there is a space in the display name.
|
||
|
|
||
|
goto end
|
||
|
|
||
|
:end
|