diff options
Diffstat (limited to 'helpers/source_iso')
-rwxr-xr-x | helpers/source_iso | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/helpers/source_iso b/helpers/source_iso index 0ef1bcb..0752ebe 100755 --- a/helpers/source_iso +++ b/helpers/source_iso @@ -28,10 +28,14 @@ then exit 0 fi -if ! In_list iso "${LH_SOURCE_IMAGES}" -then - exit 0 -fi +case "${LH_SOURCE_IMAGES}" in + iso*) + ;; + + *) + exit 0 + ;; +esac Echo_message "Begin building source iso image..." |