diff options
author | Lyndon Brown <jnqnfe@gmail.com> | 2020-04-01 10:04:19 +0100 |
---|---|---|
committer | Raphaƫl Hertzog <hertzog@debian.org> | 2020-04-23 09:38:01 +0000 |
commit | 8c0e802d139a6c4e79566e019d3ebe38b8a4a6f5 (patch) | |
tree | 5ec3c62e0b7c3a970bff024073c75c9fa0bd4533 /scripts/build/source_hdd | |
parent | 11836c0c18b07f4bd1ea22a2163875975f3e6816 (diff) | |
download | vyos-live-build-8c0e802d139a6c4e79566e019d3ebe38b8a4a6f5.tar.gz vyos-live-build-8c0e802d139a6c4e79566e019d3ebe38b8a4a6f5.zip |
remove some unwanted quoting of list parameters
there are additional instances in binary_* scripts that are left here
because they are covered by changes in MR #157
Gbp-Dch: Short
Diffstat (limited to 'scripts/build/source_hdd')
-rwxr-xr-x | scripts/build/source_hdd | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/build/source_hdd b/scripts/build/source_hdd index 01609092c..6b10e64d8 100755 --- a/scripts/build/source_hdd +++ b/scripts/build/source_hdd @@ -26,8 +26,7 @@ then exit 0 fi -if ! In_list hdd "${LB_SOURCE_IMAGES}" -then +if ! In_list hdd ${LB_SOURCE_IMAGES}; then exit 0 fi |