Skip to content

Commit e29e4c2

Browse files
authored
build: fix CLI params for windows LNK files (ethereum#21055)
* build: Fix CLI params for windows LNK files closes ethereum#21054 * Remove parameters
1 parent 82f9ed4 commit e29e4c2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build/nsis.install.nsh

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ Section "Geth" GETH_IDX
1919

2020
# Create start menu launcher
2121
createDirectory "$SMPROGRAMS\${APPNAME}"
22-
createShortCut "$SMPROGRAMS\${APPNAME}\${APPNAME}.lnk" "$INSTDIR\geth.exe" "--fast" "--cache=512"
23-
createShortCut "$SMPROGRAMS\${APPNAME}\Attach.lnk" "$INSTDIR\geth.exe" "attach" "" ""
24-
createShortCut "$SMPROGRAMS\${APPNAME}\Uninstall.lnk" "$INSTDIR\uninstall.exe" "" "" ""
22+
createShortCut "$SMPROGRAMS\${APPNAME}\${APPNAME}.lnk" "$INSTDIR\geth.exe"
23+
createShortCut "$SMPROGRAMS\${APPNAME}\Attach.lnk" "$INSTDIR\geth.exe" "attach"
24+
createShortCut "$SMPROGRAMS\${APPNAME}\Uninstall.lnk" "$INSTDIR\uninstall.exe"
2525

2626
# Firewall - remove rules (if exists)
2727
SimpleFC::AdvRemoveRule "Geth incoming peers (TCP:30303)"

0 commit comments

Comments
 (0)