From 046ae6bc22def379e19eec57a3257fd4ce19702f Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Tue, 25 Apr 2006 20:52:44 +0000 Subject: [PATCH] Don't check for error deleting files on uninstall. Files may be missing if the installation is damaged. --- stepmania/stepmania.nsi | 6 ------ 1 file changed, 6 deletions(-) diff --git a/stepmania/stepmania.nsi b/stepmania/stepmania.nsi index ccd9397cd9..77b74b3caa 100644 --- a/stepmania/stepmania.nsi +++ b/stepmania/stepmania.nsi @@ -737,12 +737,6 @@ Section "Uninstall" Delete "$SMPROGRAMS\${PRODUCT_ID}\*.*" RMDir "$SMPROGRAMS\${PRODUCT_ID}" - IfErrors do_error do_no_error - do_error: - MessageBox MB_OK|MB_ICONSTOP "$(TEXT_IO_FATAL_ERROR_UNINSTALL)" - Quit - do_no_error: - Delete "$INSTDIR\Uninstall.exe" DeleteRegKey /ifempty HKEY_LOCAL_MACHINE "SOFTWARE\${PRODUCT_ID}"