]> git.saurik.com Git - wxWidgets.git/commitdiff
don't fail if the cleanup fails
authorRobin Dunn <robin@alldunn.com>
Wed, 16 Jun 2004 05:27:09 +0000 (05:27 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 16 Jun 2004 05:27:09 +0000 (05:27 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27828 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/distrib/all/build-linux
wxPython/distrib/all/build-osx
wxPython/distrib/all/build-windows

index cd08a0fefae65a811453fcbbbf001f0ecb56ad1f..8872d2622288297e84e059d5d7010a8cd848e683 100755 (executable)
@@ -58,7 +58,7 @@ cd $DESTDIR
 
 if [ $SKIPCLEAN != yes ]; then 
     echo "Cleaning up..."
-    rm -rf $WXDIR
+    rm -rf $WXDIR || true
 fi
 
 echo "-=-=-=-  Goodbye!  -=-=-=-"
index 0c9fccd673e20fb7207a89e809298fd49896f027..f34a0df5380e299d67f7ed9d10fd38291a749e67 100755 (executable)
@@ -44,7 +44,7 @@ cd $DESTDIR
 
 if [ $SKIPCLEAN != yes ]; then 
     echo "Cleaning up..."
-    rm -r $WXDIR
+    rm -r $WXDIR || true
 fi
 
 echo "-=-=-=-  Goodbye!  -=-=-=-"
index 804f2b8c765af192effafee252022bef6b858fdb..bde2a5ecf4f6041a5f4b8499a376d7cf9834535f 100755 (executable)
@@ -95,7 +95,7 @@ cd $DESTDIR
 
 if [ $SKIPCLEAN != yes ]; then 
     echo "Cleaning up..."
-    rm -r $WXDIR
+    rm -r $WXDIR || true
 fi
 
 echo "-=-=-=-  Goodbye!  -=-=-=-"