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.
22 righe
456 B
22 righe
456 B
5 anni fa
|
#!/bin/sh
|
||
|
|
||
|
#set -x
|
||
|
|
||
|
if [ $# -lt 2 ]; then
|
||
|
echo
|
||
|
echo Usage: ./create.sh hello-world \"Hello World\"
|
||
|
echo
|
||
|
echo The first hello-world is your hook id. A new directory will be created based on
|
||
|
echo the hook id.
|
||
|
echo
|
||
|
echo The second \"Hello World\" is the hook\'s display name. The quotation marks are
|
||
|
echo only needed because there is a space in the display name.
|
||
|
|
||
|
exit 127
|
||
|
fi
|
||
|
|
||
|
ant -Dhook.name=$1 -Dhook.display.name=\"$2\" create
|
||
|
|
||
|
#ant deploy
|
||
|
|
||
|
exit 0
|