diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2012-03-26 12:33:02 -0700 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2012-03-26 12:33:02 -0700 |
commit | be4502968e18a121331c0fd90cffc4580ff024f3 (patch) | |
tree | c35ebab9e2a9d7234f52990746054ed8b1d68414 | |
parent | c289d95d6bb3105a67b96a697ddb9dd773cf1033 (diff) | |
parent | a56881b0058c257f626549a4530f2b825231a82d (diff) |
Merge pull request #992 from gavinandresen/remove_wxBitcoin
Remove wxWidgets .exe during setup
-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 bffef9c413..3d528ce789 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
|