don't fail if the cleanup fails

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27828 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-06-16 05:27:09 +00:00
parent 4b2826e515
commit 5dda6ad8b6
3 changed files with 3 additions and 3 deletions

View File

@@ -58,7 +58,7 @@ cd $DESTDIR
if [ $SKIPCLEAN != yes ]; then
echo "Cleaning up..."
rm -rf $WXDIR
rm -rf $WXDIR || true
fi
echo "-=-=-=- Goodbye! -=-=-=-"

View File

@@ -44,7 +44,7 @@ cd $DESTDIR
if [ $SKIPCLEAN != yes ]; then
echo "Cleaning up..."
rm -r $WXDIR
rm -r $WXDIR || true
fi
echo "-=-=-=- Goodbye! -=-=-=-"

View File

@@ -95,7 +95,7 @@ cd $DESTDIR
if [ $SKIPCLEAN != yes ]; then
echo "Cleaning up..."
rm -r $WXDIR
rm -r $WXDIR || true
fi
echo "-=-=-=- Goodbye! -=-=-=-"