From 0aca6332ee5865dbf4717235cbf9f5e8e79dddc3 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sun, 24 Dec 2023 09:04:36 +0000 Subject: lbmk scripts: shorter code lines while seemingly pedantic, this does actually make code easier to read. mostly just switching to shorthand for variable names, where no expansions or patterns are used Signed-off-by: Leah Rowe --- include/option.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/option.sh') diff --git a/include/option.sh b/include/option.sh index c9845a03..31411423 100755 --- a/include/option.sh +++ b/include/option.sh @@ -52,7 +52,7 @@ scan_config() done << EOF $(eval "awk '${awkstr}' \"${revfile}\"") EOF - rm -f "${revfile}" || "${_fail}" "scan_config: Cannot remove tmpfile" + rm -f "$revfile" || "$_fail" "scan_config: Cannot remove tmpfile" } check_defconfig() -- cgit v1.2.1