make_mirror.sh: only rm oldcachedir if it exists

pull/1/head
parent c0ac77b01d
commit a0e2c70eba
Signed by: josch
GPG Key ID: F2CBA5C78FBD83E1

@ -403,7 +403,13 @@ done
if [ -e $oldcachedir/debian-unstable.qcow ]; then
rm --one-file-system $oldcachedir/debian-unstable.qcow
fi
rm --one-file-system --recursive $oldcachedir/debian/pool/main
rm --one-file-system --recursive $oldcachedir/debian-security/pool/updates/main
if [ -e $oldcachedir/debian/pool/main ]; then
rm --one-file-system --recursive $oldcachedir/debian/pool/main
fi
if [ -e $oldcachedir/debian-security/pool/updates/main ]; then
rm --one-file-system --recursive $oldcachedir/debian-security/pool/updates/main
fi
# now the rest should only be empty directories
find $oldcachedir -depth -print0 | xargs -0 rmdir
if [ -e $oldcachedir ]; then
find $oldcachedir -depth -print0 | xargs -0 rmdir
fi

Loading…
Cancel
Save