summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2015-04-28 13:52:14 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2015-04-28 15:16:59 +0200
commit3544fcd20fed5c7fe33010fa0767b92656a45e5d (patch)
tree92fa14dce83b9544fd5a6b861f663b88881bdc2a
parent617d58eea9e98b6d7919959883f9e72da8695f76 (diff)
nsis: Fix uninstaller path in start menu entry
There an extra '-' which should not be present
-rw-r--r--spice-guest-tools.nsis2
1 files changed, 1 insertions, 1 deletions
diff --git a/spice-guest-tools.nsis b/spice-guest-tools.nsis
index cd74209..958e6d7 100644
--- a/spice-guest-tools.nsis
+++ b/spice-guest-tools.nsis
@@ -123,7 +123,7 @@ SectionEnd
Section "Start Menu Shortcuts"
CreateDirectory "$SMPROGRAMS\spice-guest-tools"
- CreateShortCut "$SMPROGRAMS\spice-guest-tools\Uninstall SPICE Guest Tools.lnk" "$INSTDIR\Uninstall-spice-guest-tools.exe" "" "$INSTDIR\Uninstall-spice-guest-tools.exe" 0
+ CreateShortCut "$SMPROGRAMS\spice-guest-tools\Uninstall SPICE Guest Tools.lnk" "$INSTDIR\Uninstall spice-guest-tools.exe" "" "$INSTDIR\Uninstall spice-guest-tools.exe" 0
SectionEnd
Section "Uninstall"