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.
25 righe
566 B
25 righe
566 B
5 anni fa
|
@echo off
|
||
|
|
||
|
if "" == "%1" goto errorCreate
|
||
|
|
||
|
if "" == "%2" goto errorCreate
|
||
|
|
||
|
call ant -Dext.name=%1 -Dext.display.name=%2 create
|
||
|
|
||
|
rem call ant deploy
|
||
|
|
||
|
goto end
|
||
|
|
||
|
:errorCreate
|
||
|
echo.
|
||
|
echo Usage: create.bat hello-world "Hello World"
|
||
|
echo.
|
||
|
echo The first hello-world is your extension environment name. A new directory will
|
||
|
echo be created based on the extension environment name.
|
||
|
echo.
|
||
|
echo The second "Hello World" is the extension environment's display name. The
|
||
|
echo quotation marks are only needed because there is a space in the display name.
|
||
|
|
||
|
goto end
|
||
|
|
||
|
:end
|