Skip to content

Commit

Permalink
build: fix CLI params for windows LNK files (ethereum#21055)
Browse files Browse the repository at this point in the history
* build: Fix CLI params for windows LNK files

closes ethereum#21054

* Remove parameters
  • Loading branch information
ligi authored May 11, 2020
1 parent 82f9ed4 commit e29e4c2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/nsis.install.nsh
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ Section "Geth" GETH_IDX

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

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

0 comments on commit e29e4c2

Please sign in to comment.