From bef64ce93c54b75828f3722f321f7fa3353ed8de Mon Sep 17 00:00:00 2001 From: Noah Slater Date: Mon, 16 Jun 2008 12:14:06 +0000 Subject: corrected -v option to -V option to match couchdb and couchjs git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@668134 13f79535-47bb-0310-9956-ffa450edef68 --- bootstrap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap b/bootstrap index 5b9c74be..86be5abe 100755 --- a/bootstrap +++ b/bootstrap @@ -196,7 +196,7 @@ EOF parse_script_option_list () { set +e - options=`getopt vhC $@` + options=`getopt hVC $@` if test ! $? -eq 0; then display_error fi @@ -204,8 +204,8 @@ parse_script_option_list () { eval set -- $options while [ $# -gt 0 ]; do case "$1" in - -v) shift; display_version; exit $SCRIPT_OK;; -h) shift; display_help; exit $SCRIPT_OK;; + -V) shift; display_version; exit $SCRIPT_OK;; --) shift; break;; *) display_error "Unknown option: $1" >&2;; esac -- cgit v1.2.3