From 4af63f89d2ed4abf1d3f5990f7d695b2d54a7204 Mon Sep 17 00:00:00 2001 From: Mitchell Cash Date: Sun, 28 Feb 2016 20:45:55 +1000 Subject: [PATCH] Correctly remove wxWidgets .exe during setup --- share/setup.nsi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/share/setup.nsi b/share/setup.nsi index 13b2f49f..d702ba2c 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -85,9 +85,9 @@ Section -Main SEC0000 SetOutPath $INSTDIR WriteRegStr HKCU "${REGKEY}\Components" Main 1 - # Remove old wxwidgets-based-bitcoin executable and locales: - #Delete /REBOOTOK $INSTDIR\bitcoin.exe - #RMDir /r /REBOOTOK $INSTDIR\locale + # Remove old wxwidgets-based-paycoin executable and locales: + Delete /REBOOTOK $INSTDIR\paycoin.exe + RMDir /r /REBOOTOK $INSTDIR\locale SectionEnd Section -post SEC0001