summaryrefslogtreecommitdiff
path: root/git-web--browse.sh
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2009-06-13 12:50:42 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2009-06-13 12:50:42 -0700
commit95ad2a65fbb9b7f26669fed9906fe9a1a531810b (patch)
tree596412d5d138652245b1f84d7249a471cc125108 /git-web--browse.sh
parentMerge branch 'cb/maint-no-double-merge' (diff)
parentcompat/ has subdirectories: do not omit them in 'make clean' (diff)
downloadtgif-95ad2a65fbb9b7f26669fed9906fe9a1a531810b.tar.xz
Merge branch 'sp/msysgit'
* sp/msysgit: compat/ has subdirectories: do not omit them in 'make clean' Fix typo in nedmalloc warning fix MinGW: Teach Makefile to detect msysgit and apply specific settings Fix warnings in nedmalloc when compiling with GCC 4.4.0 Add custom memory allocator to MinGW and MacOS builds MinGW readdir reimplementation to support d_type connect.c: Support PuTTY plink and TortoisePlink as SSH on Windows git: browsing paths with spaces when using the start command MinGW: fix warning about implicit declaration of _getch() test-chmtime: work around Windows limitation Work around a regression in Windows 7, causing erase_in_line() to crash sometimes Quiet make: do not leave Windows behind MinGW: GCC >= 4 does not need SNPRINTF_SIZE_CORR anymore Conflicts: Makefile
Diffstat (limited to 'git-web--browse.sh')
-rwxr-xr-xgit-web--browse.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/git-web--browse.sh b/git-web--browse.sh
index 7ed0faddcd..4f5c740df5 100755
--- a/git-web--browse.sh
+++ b/git-web--browse.sh
@@ -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" "$@" &
;;