- create a jar, gnerate a ant build.xml - version of jar Signed-off-by: philippe lhardy <philippe@pavilionartlogiciel>
13 lines
214 B
Bash
Executable File
13 lines
214 B
Bash
Executable File
#!/bin/bash
|
|
|
|
buildscript=$1
|
|
|
|
if [[ -e $buildscript ]]
|
|
then
|
|
# protect ${ variables.
|
|
sed 's/\${/\\\${/g' build.xml
|
|
else
|
|
echo "[ERROR] this $0 tool expect an initial argument with buildscript" >&2
|
|
fi
|
|
|