diff options
| author | Gavin Andresen <[email protected]> | 2012-03-26 12:33:02 -0700 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2012-03-26 12:33:02 -0700 |
| commit | be4502968e18a121331c0fd90cffc4580ff024f3 (patch) | |
| tree | c35ebab9e2a9d7234f52990746054ed8b1d68414 /share/setup.nsi | |
| parent | Merge pull request #991 from gavinandresen/disableWinURI (diff) | |
| parent | Remove wxWidgets .exe and locales during setup (diff) | |
| download | discoin-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.nsi | 4 |
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
|