diff options
author | Leah Rowe <leah@libreboot.org> | 2024-06-22 04:06:07 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-06-22 13:46:20 +0100 |
commit | d4d5d2902c020419057d63c9791804906a6c60dd (patch) | |
tree | b917503650c905f6590d9fedec7ea60023cedc71 /include/mrc.sh | |
parent | c1527b6114e94530c50b00ff22ef03ea048e4bd1 (diff) |
use backticks on eval commands, not subshells
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include/mrc.sh')
-rwxr-xr-x | include/mrc.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mrc.sh b/include/mrc.sh index fddaef5d..2e00d9f9 100755 --- 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() { |