diff options
author | Emmanuel Bourg <ebourg@apache.org> | 2015-09-25 16:27:09 +0200 |
---|---|---|
committer | Emmanuel Bourg <ebourg@apache.org> | 2015-09-25 16:28:38 +0200 |
commit | f98980975e8f67b85c7b2008d16dca579e5b36a9 (patch) | |
tree | 7e05c033744649c7e9df9795c21f654d1dc69879 /scripts/update-java-alternatives | |
parent | 93240ae73e83e57a2308400344bbabc09d385e14 (diff) | |
download | java-common-f98980975e8f67b85c7b2008d16dca579e5b36a9.tar.gz |
Removed the not implemented --test option from update-java-alternatives
Diffstat (limited to 'scripts/update-java-alternatives')
-rwxr-xr-x | scripts/update-java-alternatives | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/scripts/update-java-alternatives b/scripts/update-java-alternatives index 5e31a68..6dbc92b 100755 --- a/scripts/update-java-alternatives +++ b/scripts/update-java-alternatives @@ -8,7 +8,7 @@ usage() { rv=$1 cat >&2 <<-EOF - usage: $prog [--jre-headless] [--jre] [--plugin] [ -t|--test|-v|--verbose] + usage: $prog [--jre-headless] [--jre] [--plugin] [-v|--verbose] -l|--list [<jname>] -s|--set <jname> -a|--auto @@ -46,9 +46,6 @@ while [ "$#" -gt 0 ]; do [ "$#" -gt 0 ] || usage 1 jname=$1 ;; - -t|--test) - dryrun=yes - uaopts="$uaopts --test";; -v|--verbose) verbose=yes uaopts="${uaopts/--quiet/}";; |