From 5acca63d53e7427f190be1649a07edef6d84248c Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Mon, 27 Aug 2007 18:57:14 +0200 Subject: [PATCH] [BUGFIX]: Removing of backups was broken (forgot to prepend the path :/) --- ccollect.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccollect.sh b/ccollect.sh index c621648..cc902c5 100755 --- a/ccollect.sh +++ b/ccollect.sh @@ -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