catalyst-auto: add verbose short option for improved usability. Approved by jmbsvicetto

svn path=/trunk/; revision=838
This commit is contained in:
Jeremy Olexa 2011-12-02 05:15:46 +00:00
parent 2fe7a860bf
commit d5d54a8abf

View file

@ -16,11 +16,11 @@ usage() {
cat <<EOH
Usage:
stage_build [-c|--config <config>] [--verbose] [-h|--help]
stage_build [-c|--config <config>] [-v|--verbose] [-h|--help]
Options:
-c|--config Specifies the config file to use (required)
--verbose Send output of commands to console as well as log
-v|--verbose Send output of commands to console as well as log
-k|--keep-tmpdir Don't remove temp dir when build finishes
-t|--test Stop after mangling specs and copying files
-h|--help Show this message and quit
@ -83,7 +83,7 @@ do
config_file=$1
shift
;;
--verbose)
-v|--verbose)
verbose=1
;;
-k|--keep-tmpdir)