diff options
| author | Leah Rowe <leah@libreboot.org> | 2025-10-02 07:07:54 +0100 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2025-10-02 07:09:37 +0100 |
| commit | d90defeae3e4e7c91ba521e44071d962abb33d3f (patch) | |
| tree | 3f071b4dc11300edfbac99e1467645aaf1552d4e | |
| parent | a74af6aa0579e6442646713c794c4ecc62902831 (diff) | |
mrc.sh: remove superfluous eval statement
Signed-off-by: Leah Rowe <leah@libreboot.org>
| -rw-r--r-- | include/mrc.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/mrc.sh b/include/mrc.sh index 7dba6263..6bc8632c 100644 --- a/include/mrc.sh +++ b/include/mrc.sh @@ -4,7 +4,11 @@ # Modifications in this version are Copyright 2021,2023-2025 Leah Rowe. # Original copyright detailed in repo: https://review.coreboot.org/coreboot/ -eval "`setvars "" MRC_url MRC_url_bkup MRC_hash MRC_board SHELLBALL`" +MRC_url="" +MRC_url_bkup="" +MRC_hash="" +MRC_board="" +SHELLBALL="" extract_refcode() { |
