ENH: clean now removes the entire release root directory.

This commit is contained in:
Brad King 2003-01-17 11:55:00 -05:00
parent f95b86b0e7
commit 620ca403a2
1 changed files with 2 additions and 2 deletions

View File

@ -138,9 +138,9 @@ setup()
#-----------------------------------------------------------------------------
clean()
{
setup || return 1
cd "${HOME}" &&
echo "Cleaning up ${RELEASE_ROOT}" &&
rm -rf *
rm -rf "${RELEASE_ROOT_NAME}"
}
#-----------------------------------------------------------------------------