diff options
| author | Gavin Andresen <[email protected]> | 2012-03-26 15:34:13 -0400 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2012-03-26 15:34:13 -0400 |
| commit | dd675e01c482f96f1d403691d8f8fa8773081a9b (patch) | |
| tree | 09af404e167a089b4a603cf379c376e60c180f1a | |
| parent | Merge branch 'master' of github.com:bitcoin/bitcoin (diff) | |
| parent | Merge pull request #992 from gavinandresen/remove_wxBitcoin (diff) | |
| download | discoin-dd675e01c482f96f1d403691d8f8fa8773081a9b.tar.xz discoin-dd675e01c482f96f1d403691d8f8fa8773081a9b.zip | |
Merge branch 'master' of github.com:bitcoin/bitcoin
| -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
|