[BUGFIX]: Removing of backups was broken (forgot to prepend the path :/)
This commit is contained in:
parent
feea0661a7
commit
5acca63d53
1 changed files with 1 additions and 1 deletions
|
@ -426,7 +426,7 @@ while [ "${i}" -lt "${no_sources}" ]; do
|
||||||
|
|
||||||
while read to_remove; do
|
while read to_remove; do
|
||||||
_techo "Removing ${to_remove} ..."
|
_techo "Removing ${to_remove} ..."
|
||||||
rm ${VVERBOSE} -rf "$to_remove" || \
|
rm ${VVERBOSE} -rf "${c_dest}/${to_remove}" || \
|
||||||
_exit_err "Removing ${to_remove} failed."
|
_exit_err "Removing ${to_remove} failed."
|
||||||
done < "${TMP}"
|
done < "${TMP}"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue