diff options
author | Daniel Baumann <daniel@debian.org> | 2008-11-01 16:31:26 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:44 +0100 |
commit | c225229f2910ee138873ecb05b43e8ec3021918d (patch) | |
tree | 0d356298e9e443cd3141ff04ee359ee04faf1224 /helpers/lh_config | |
parent | 776a7b22271178949bf6f2676e26eefb6144ce11 (diff) | |
download | vyos-live-build-c225229f2910ee138873ecb05b43e8ec3021918d.tar.gz vyos-live-build-c225229f2910ee138873ecb05b43e8ec3021918d.zip |
Implementing colorful output (currently disabled by default, though).
Diffstat (limited to 'helpers/lh_config')
-rwxr-xr-x | helpers/lh_config | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/helpers/lh_config b/helpers/lh_config index 5911a91dd..557f2bf19 100755 --- a/helpers/lh_config +++ b/helpers/lh_config @@ -647,6 +647,11 @@ Local_arguments () shift 2 ;; + --color) + _COLOR="enabled" + shift + ;; + --debug) _DEBUG="enabled" shift @@ -837,6 +842,10 @@ LH_TEMPLATES="${LH_TEMPLATES}" # (Default: ${_DEBUG}) #_DEBUG="${_DEBUG}" +# \$_COLOR: enable color +# (Default: ${_COLOR}) +#_COLOR="${_COLOR}" + # \$_FORCE: enable force # (Default: ${_FORCE}) #_FORCE="${_FORCE}" |