genfstab: always upcase the requested tag

lowercase tags do not exist, so case shouldn't be a user-facing concern.
This commit is contained in:
Dave Reisner 2012-11-11 23:45:49 -05:00
parent 73016da72f
commit 5897694194

View File

@ -75,7 +75,7 @@ while getopts ':Lpt:U' flag; do
nopseudofs=1
;;
t)
bytag=$OPTARG
bytag=${OPTARG^^}
;;
:)
die '%s: option requires an argument -- '\''%s'\' "${0##*/}" "$OPTARG"