diff options
author | Leah Rowe <leah@libreboot.org> | 2025-10-02 06:52:10 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-10-02 06:52:10 +0100 |
commit | 2b4b5bf82e7b77fc4912028901df421f5e67fb0b (patch) | |
tree | edec5129bad56753d7a17739bcc8cf7b6a4a09ab /include | |
parent | 85b10a674b8cbb141db340c2be1b4be33237c9d4 (diff) |
inject: remove superfluous use of eval
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/inject.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/inject.sh b/include/inject.sh index b4dba257..444915a1 100644 --- a/include/inject.sh +++ b/include/inject.sh @@ -28,7 +28,9 @@ inject() err "No options specified" "inject" "$@" fi - eval "`setvars "" nuke new_mac xchanged`" + nuke="" + new_mac="" + xchanged="" archive="$1"; new_mac="xx:xx:xx:xx:xx:xx" |