diff options
| author | Matt Corallo <[email protected]> | 2012-03-25 13:23:35 -0400 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2012-03-25 13:23:35 -0400 |
| commit | 0ec76d834eb2218a61f45e790d28eff081acb0fe (patch) | |
| tree | 5549cfe3b83477a7695b0525bbddea6e57b0ee5a | |
| parent | Merge pull request #946 from luke-jr/bugfix_rm_mingw (diff) | |
| download | discoin-0ec76d834eb2218a61f45e790d28eff081acb0fe.tar.xz discoin-0ec76d834eb2218a61f45e790d28eff081acb0fe.zip | |
Fix URI link to bitcoin-qt.exe instead of bitcoin.exe
| -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 6bd003f0d..eba3b66dc 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -96,8 +96,8 @@ Section -post SEC0001 WriteRegDWORD HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" NoRepair 1
WriteRegStr HKCR "bitcoin" "URL Protocol" ""
WriteRegStr HKCR "bitcoin" "" "URL:Bitcoin"
- WriteRegStr HKCR "bitcoin\DefaultIcon" "" $INSTDIR\bitcoin.exe
- WriteRegStr HKCR "bitcoin\shell\open\command" "" '"$INSTDIR\bitcoin.exe" "$$1"'
+ WriteRegStr HKCR "bitcoin\DefaultIcon" "" $INSTDIR\bitcoin-qt.exe
+ WriteRegStr HKCR "bitcoin\shell\open\command" "" '"$INSTDIR\bitcoin-qt.exe" "$$1"'
SectionEnd
# Macro for selecting uninstaller sections
|