diff options
author | Daniel Baumann <daniel@debian.org> | 2007-09-23 14:05:14 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 18:22:27 +0100 |
commit | 54c6faef3bd19847bd7fc7ce8fe8e7ee49215201 (patch) | |
tree | 00c77f1777d5aaa024fa5a7b5d4657f8ca5fcc3b /helpers/lh_source_iso | |
parent | 791c256094789702c8e199ee5b3f2f5e73f186fb (diff) | |
download | vyos-live-build-54c6faef3bd19847bd7fc7ce8fe8e7ee49215201.tar.gz vyos-live-build-54c6faef3bd19847bd7fc7ce8fe8e7ee49215201.zip |
Respecting LH_QUIET for genisoimage/mkisofs calls, thanks to Justin Pryzby <pryzbyj@justinpryzby.com>.
Diffstat (limited to 'helpers/lh_source_iso')
-rwxr-xr-x | helpers/lh_source_iso | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/helpers/lh_source_iso b/helpers/lh_source_iso index b5687817a..ef7241f5a 100755 --- a/helpers/lh_source_iso +++ b/helpers/lh_source_iso @@ -69,6 +69,11 @@ then rm -f source.iso fi +if [ "${LH_QUIET}" = "enabled" ] +then + GENISOIMAGE_OPTIONS="${GENISOIMAGE_OPTIONS} -quiet" +fi + if [ "${LH_VERBOSE}" = "enabled" ] then GENISOIMAGE_OPTIONS="${GENISOIMAGE_OPTIONS} -v" |