Files
artloglaby/artlog_toolbox/scripts/absant.sh
philippe lhardy 7633f42399 move many build/control scripts in artlog_toolbox, prepare artlog_toolbox to be shared between multiple projects
Signed-off-by: philippe lhardy <philippe@pavilionartlogiciel>
2015-02-25 20:22:27 +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