blob: 3beff701d5d3547ef83d0c67e0ba6ffb10ca6d4c [file] [log] [blame]
#!/usr/bin/env bash
#
# remember to leave no slashes on commonVariations in source command,
# so that users path is used to find it (first). But, path on
# commonComputedVariables means we expect to execute only our
# version
if [ -z $BUILD_INITIALIZED ]
then
# if releng_control not set, we assume we are already in releng_control directory
if [ -z $RELENG_CONTROL ]
then
RELENG_CONROL=`pwd`
fi
pushd .
cd ${RELENG_CONTROL}
source commonVariations.shsource
source ${RELENG_CONTROL}/commonComputedVariables.shsource
popd
fi
echo "Running ant at priority " $JOB_NICE
echo "args to ant: " "$@"
exec nice --adjustment $JOB_NICE "${RELENG_CONTROL}/ant.sh" "$@"