From 41482f279c5e9498b1a30a6f6abcd41c0e963e1b Mon Sep 17 00:00:00 2001 From: Chris Antos Date: Sun, 13 Oct 2024 12:09:30 -0700 Subject: [PATCH] Fix installer to use clink.ico instead of cmd.exe icon. --- installer/clink.nsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/clink.nsi b/installer/clink.nsi index 0d757ff34..690065ded 100644 --- a/installer/clink.nsi +++ b/installer/clink.nsi @@ -175,7 +175,7 @@ Section "!Application files" app_files_id WriteRegStr HKLM $0 "DisplayName" "Clink v${CLINK_TAGVERSION}" WriteRegStr HKLM $0 "UninstallString" "$INSTDIR\$uninstallerExe" WriteRegStr HKLM $0 "Publisher" "Christopher Antos" - WriteRegStr HKLM $0 "DisplayIcon" "$SYSDIR\cmd.exe,0" + WriteRegStr HKLM $0 "DisplayIcon" "$INSTDIR\clink.ico,0" WriteRegStr HKLM $0 "URLInfoAbout" "http://chrisant996.github.io/clink" WriteRegStr HKLM $0 "HelpLink" "http://chrisant996.github.io/clink" WriteRegStr HKLM $0 "InstallLocation" "$INSTDIR"