Skip to content

Commit 4d57edc

Browse files
fix windows context menu entry
1 parent 7cb40b9 commit 4d57edc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build/win/installer.nsh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
!macro customInstall
22
WriteRegStr HKCU "Software\Classes\Directory\Background\shell\Hyper" "" "Open &Hyper here"
33
WriteRegStr HKCU "Software\Classes\Directory\Background\shell\Hyper" "Icon" "$appExe"
4-
WriteRegStr HKCU "Software\Classes\Directory\Background\shell\Hyper\command" "" `$appExe "%V"`
4+
WriteRegStr HKCU "Software\Classes\Directory\Background\shell\Hyper\command" "" `"$appExe" "%V"`
55

66
WriteRegStr HKCU "Software\Classes\Directory\shell\Hyper" "" "Open &Hyper here"
77
WriteRegStr HKCU "Software\Classes\Directory\shell\Hyper" "Icon" "$appExe"
8-
WriteRegStr HKCU "Software\Classes\Directory\shell\Hyper\command" "" `$appExe "%V"`
8+
WriteRegStr HKCU "Software\Classes\Directory\shell\Hyper\command" "" `"$appExe" "%V"`
99

1010
WriteRegStr HKCU "Software\Classes\Drive\shell\Hyper" "" "Open &Hyper here"
1111
WriteRegStr HKCU "Software\Classes\Drive\shell\Hyper" "Icon" "$appExe"
12-
WriteRegStr HKCU "Software\Classes\Drive\shell\Hyper\command" "" `$appExe "%V"`
12+
WriteRegStr HKCU "Software\Classes\Drive\shell\Hyper\command" "" `"$appExe" "%V"`
1313
!macroend
1414

1515
!macro customUnInstall

0 commit comments

Comments
 (0)