From e31f5b79783d26b122b526ef2ff2917ca3ec8524 Mon Sep 17 00:00:00 2001 From: Rim Date: Sun, 17 Dec 2023 01:17:06 -0500 Subject: [PATCH] Whoop, fix target path for shortcut --- T7x/t7x_Installer.nsi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/T7x/t7x_Installer.nsi b/T7x/t7x_Installer.nsi index 3e32d53..d19ecfb 100644 --- a/T7x/t7x_Installer.nsi +++ b/T7x/t7x_Installer.nsi @@ -92,7 +92,8 @@ Section "LocalAppData Cache Files" SecCache SectionEnd Function finishpageaction -CreateShortcut "$DESKTOP\${PRODUCT_NAME}.lnk" "$INSTDIR\t7x.exe" "" "$INSTDIR\t7x.exe" + SetOutPath $INSTDIR + CreateShortcut "$DESKTOP\${PRODUCT_NAME}.lnk" "$INSTDIR\t7x.exe" "" "$INSTDIR\t7x.exe" FunctionEnd ; Uninstaller Sections