diff options
author | Leah Rowe <leah@libreboot.org> | 2025-01-02 23:52:45 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-01-02 23:52:45 +0000 |
commit | 0cf58c22734b19293f4cbef83add59b031ca1773 (patch) | |
tree | 484a35f40cbf8fb400d0901c3cbd3baf22088bff /include/mrc.sh | |
parent | 8276560cc998e8eb1f935cbbe7551d2fbdc65d39 (diff) |
fix lbmk shellcheck errors
There was also a condition in run_make_command that is now
an OR, where it was an AND, on script/trees, to fix the use
of mixed (and erroneous) OR/AND operators.
I'm planning a much more invasive audit than this. These are
light fixes, intended for Libreboot 20241206 rev8.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/mrc.sh')
-rw-r--r-- | include/mrc.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mrc.sh b/include/mrc.sh index 2e00d9f9..f5db2ff0 100644 --- a/include/mrc.sh +++ b/include/mrc.sh @@ -4,7 +4,7 @@ # Modifications in this version are Copyright 2021, 2023 and 2024 Leah Rowe. # Original copyright detailed in repo: https://review.coreboot.org/coreboot/ -eval `setvars "" MRC_url MRC_url_bkup MRC_hash MRC_board SHELLBALL` +eval "`setvars "" MRC_url MRC_url_bkup MRC_hash MRC_board SHELLBALL`" extract_mrc() { |