mirror of
https://github.com/git/git.git
synced 2026-04-02 04:50:12 +02:00
git: browsing paths with spaces when using the start command
msysGit issue 258 tracks a problem opening a browser onto file paths that contain spaces or parentheses when calling the web--browse script. This path modifies how the start command is called to solve this. Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
This commit is contained in:
committed by
Johannes Schindelin
parent
e41261b3ae
commit
fdffdb2ddb
@@ -161,9 +161,12 @@ case "$browser" in
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
w3m|links|lynx|open|start)
|
||||
w3m|links|lynx|open)
|
||||
eval "$browser_path" "$@"
|
||||
;;
|
||||
start)
|
||||
exec "$browser_path" '"web-browse"' "$@"
|
||||
;;
|
||||
dillo)
|
||||
"$browser_path" "$@" &
|
||||
;;
|
||||
|
||||
Reference in New Issue
Block a user