Gentoo Archives: gentoo-commits

From: "Jeremy Olexa (darkside)" <darkside@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] releng r838 - trunk/tools
Date: Fri, 02 Dec 2011 05:16:01
Message-Id: 20111202051547.316FD2004B@flycatcher.gentoo.org
1 Author: darkside
2 Date: 2011-12-02 05:15:46 +0000 (Fri, 02 Dec 2011)
3 New Revision: 838
4
5 Modified:
6 trunk/tools/catalyst-auto
7 Log:
8 catalyst-auto: add verbose short option for improved usability. Approved by jmbsvicetto
9
10 Modified: trunk/tools/catalyst-auto
11 ===================================================================
12 --- trunk/tools/catalyst-auto 2011-11-27 19:13:12 UTC (rev 837)
13 +++ trunk/tools/catalyst-auto 2011-12-02 05:15:46 UTC (rev 838)
14 @@ -16,11 +16,11 @@
15
16 cat <<EOH
17 Usage:
18 - stage_build [-c|--config <config>] [--verbose] [-h|--help]
19 + stage_build [-c|--config <config>] [-v|--verbose] [-h|--help]
20
21 Options:
22 -c|--config Specifies the config file to use (required)
23 - --verbose Send output of commands to console as well as log
24 + -v|--verbose Send output of commands to console as well as log
25 -k|--keep-tmpdir Don't remove temp dir when build finishes
26 -t|--test Stop after mangling specs and copying files
27 -h|--help Show this message and quit
28 @@ -83,7 +83,7 @@
29 config_file=$1
30 shift
31 ;;
32 - --verbose)
33 + -v|--verbose)
34 verbose=1
35 ;;
36 -k|--keep-tmpdir)