[BUGFIX]: Removing of backups was broken (forgot to prepend the path :/)

This commit is contained in:
Nico Schottelius 2007-08-27 18:57:14 +02:00
parent feea0661a7
commit 5acca63d53
1 changed files with 1 additions and 1 deletions

View File

@ -426,7 +426,7 @@ while [ "${i}" -lt "${no_sources}" ]; do
while read to_remove; do
_techo "Removing ${to_remove} ..."
rm ${VVERBOSE} -rf "$to_remove" || \
rm ${VVERBOSE} -rf "${c_dest}/${to_remove}" || \
_exit_err "Removing ${to_remove} failed."
done < "${TMP}"
fi