From 4708da2ca9a72520f39749b3b34b0bdc2fbfa15d Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sat, 7 Oct 2023 05:36:52 +0100 Subject: use quotes when checking empty strings in scripts this is far less error-prone Signed-off-by: Leah Rowe --- include/option.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/option.sh') diff --git a/include/option.sh b/include/option.sh index 6ae5f2de..bc5bb42a 100755 --- a/include/option.sh +++ b/include/option.sh @@ -41,11 +41,11 @@ handle_coreboot_utils() { for util in cbfstool ifdtool; do x_ ./update project build ${_f} "src/coreboot/${1}/util/${util}" - [ -z ${mode} ] && [ ! -f "cbutils/${1}/${util}" ] && \ + [ -z "${mode}" ] && [ ! -f "cbutils/${1}/${util}" ] && \ x_ mkdir -p "cbutils/${1}" && \ x_ cp "src/coreboot/${1}/util/${util}/${util}" \ "cbutils/${1}" - [ -z ${mode} ] || \ + [ -z "${mode}" ] || \ x_ rm -Rf "cbutils/${1}" done } -- cgit v1.2.1