mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-08 08:01:15 -03:00
Fix usage of osascript in help
Work around a macOS osascript bug in 10.12.5 which prevented help from working. See #4035.
This commit is contained in:
committed by
David Adam
parent
5c140e5570
commit
3061eed647
@@ -131,7 +131,8 @@ function help --description 'Show help for the fish shell'
|
||||
# OS X /usr/bin/open swallows fragments (anchors), so use osascript
|
||||
# Eval is just a cheesy way of removing the hash escaping
|
||||
if test "$fish_browser" = osascript
|
||||
osascript -e 'open location "'(eval echo $page_url)'"'
|
||||
set -l opencmd 'open location "'(eval echo $page_url)'"'
|
||||
osascript -e 'try' -e $opencmd -e 'on error' -e $opencmd -e 'end try'
|
||||
return
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user