Add '-f' to 'rm' command to silence error when directory is empty

This commit is contained in:
John SJ Anderson 2012-03-18 23:11:30 -04:00
parent 42cb528e2a
commit ec662f82c5

2
melpa
View file

@ -7,7 +7,7 @@ cd ${BASEDIR} || exit 1
function melpa_clear_packages {
echo "*** Clearing the packages folder..."
rm -r packages/*
rm -rf packages/*
echo
}