chiark / gitweb /
get-var: Remove. I think this used to be part of the public_html build
[bin.git] / bugzilla-show
1 #! /bin/sh -e
2
3 case $1 in
4     subversion)
5         ROOT='http://subversion.tigris.org/issues'
6         ;;
7     openssh)
8         ROOT='http://bugzilla.mindrot.org'
9         ;;
10     *)
11         echo "Unknown Bugzilla installation '$1'. Recognized are:" >&2
12         echo '  subversion' >&2
13         echo '  openssh' >&2
14         exit 1
15         ;;
16 esac
17
18 ${BROWSER:-w3m} "$ROOT/show_bug.cgi?id=$2"