aboutsummaryrefslogtreecommitdiff
path: root/share/setup.nsi
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2012-03-26 12:33:02 -0700
committerGavin Andresen <[email protected]>2012-03-26 12:33:02 -0700
commitbe4502968e18a121331c0fd90cffc4580ff024f3 (patch)
treec35ebab9e2a9d7234f52990746054ed8b1d68414 /share/setup.nsi
parentMerge pull request #991 from gavinandresen/disableWinURI (diff)
parentRemove wxWidgets .exe and locales during setup (diff)
downloaddiscoin-be4502968e18a121331c0fd90cffc4580ff024f3.tar.xz
discoin-be4502968e18a121331c0fd90cffc4580ff024f3.zip
Merge pull request #992 from gavinandresen/remove_wxBitcoin
Remove wxWidgets .exe during setup
Diffstat (limited to 'share/setup.nsi')
-rw-r--r--share/setup.nsi4
1 files changed, 4 insertions, 0 deletions
diff --git a/share/setup.nsi b/share/setup.nsi
index bffef9c41..3d528ce78 100644
--- a/share/setup.nsi
+++ b/share/setup.nsi
@@ -75,6 +75,10 @@ Section -Main SEC0000
File /r /x *.exe /x *.o ../src\*.*
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
SectionEnd
Section -post SEC0001