safety net, change to starting directory nefore rm'ing self-generated stuff

This commit is contained in:
George Danchev 2011-06-23 16:22:17 +00:00
parent add79ca00d
commit 92f0f89a40
1 changed files with 6 additions and 2 deletions

View File

@ -2,11 +2,12 @@
set -e
# required
START_DIR=`pwd`
# required config items
XOR=""
DIR=""
IMG=""
# optional
# optional config items
ISOLINUX_BIN=""
BOOT_CAT=""
CONFFILE=$HOME/releng_build_isojigdo.conf
@ -146,6 +147,9 @@ esac
# sort out the cruft
if [ ${CLEAN} -eq 1 ]; then
# safety net, just in case -> we want to be in the starting
# directory before removing whatever self-generated stuff
cd "${START_DIR}" || exit 1
rm -f ${RES}
printf "$0: removed %s\n" ${RES}
else