diff options
Diffstat (limited to 'share')
-rw-r--r-- | share/setup.nsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/setup.nsi b/share/setup.nsi index c0bc880a56..87cd58a855 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -67,7 +67,7 @@ Section -Main SEC0000 SetOutPath $INSTDIR
SetOverwrite on
File ../release/bitcoin-qt.exe
- File /oname=license.txt ../COPYING
+ File /oname=COPYING.txt ../COPYING
File /oname=readme.txt ../doc/README_windows.txt
SetOutPath $INSTDIR\daemon
File ../src/bitcoind.exe
@@ -120,7 +120,7 @@ done${UNSECTION_ID}: # Uninstaller sections
Section /o -un.Main UNSEC0000
Delete /REBOOTOK $INSTDIR\bitcoin-qt.exe
- Delete /REBOOTOK $INSTDIR\license.txt
+ Delete /REBOOTOK $INSTDIR\COPYING.txt
Delete /REBOOTOK $INSTDIR\readme.txt
RMDir /r /REBOOTOK $INSTDIR\daemon
RMDir /r /REBOOTOK $INSTDIR\src
|