diff options
author | Leah Rowe <leah@libreboot.org> | 2023-12-24 09:04:36 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-12-24 09:04:36 +0000 |
commit | 0aca6332ee5865dbf4717235cbf9f5e8e79dddc3 (patch) | |
tree | cbb2a18ec22213208ab3dcaf22eebbb84fb14e5e /include/option.sh | |
parent | 575332f2219c9e6f435b7ed35bfb2a408de0628c (diff) |
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 <leah@libreboot.org>
Diffstat (limited to 'include/option.sh')
-rwxr-xr-x | include/option.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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() |