Files
artloglaby/absant.sh
philippe lhardy 2a8f80154f - allows to create a debian package ( yet unsigned )
- create a jar, gnerate a ant build.xml
- version of jar

Signed-off-by: philippe lhardy <philippe@pavilionartlogiciel>
2015-02-16 23:07:20 +01:00

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