diff options
Diffstat (limited to 'helpers')
-rwxr-xr-x | helpers/lh_binary_iso | 5 | ||||
-rwxr-xr-x | helpers/lh_source_iso | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/helpers/lh_binary_iso b/helpers/lh_binary_iso index 8b00a3dcd..82ba2a9f1 100755 --- a/helpers/lh_binary_iso +++ b/helpers/lh_binary_iso @@ -67,6 +67,11 @@ then rm -f binary.iso fi +if [ "${LH_QUIET}" = "enabled" ] +then + GENISOIMAGE_OPTIONS="${GENISOIMAGE_OPTIONS} -quiet" +fi + if [ "${LH_VERBOSE}" = "enabled" ] then GENISOIMAGE_OPTIONS="${GENISOIMAGE_OPTIONS} -v" 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" |