diff options
author | Leah Rowe <leah@libreboot.org> | 2025-05-05 06:21:04 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-05-05 06:21:04 +0100 |
commit | 9bb1ca0a5fe826a8498da6a731a1326b2f06812e (patch) | |
tree | 56478c284b8e9903c5d41a5b1959b2dd26a5fed5 | |
parent | a662ec90d9b0b9f768508cbce648bf532741ab3c (diff) |
inject.sh: Remove unnecessary check
_dest is already checked in the calling function fetch(),
after extract_tbfw() has been called.
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r-- | include/inject.sh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/inject.sh b/include/inject.sh index 93f60c68..43cb5542 100644 --- a/include/inject.sh +++ b/include/inject.sh @@ -245,7 +245,6 @@ extract_sch5545ec() extract_tbfw() { chkvars TBFW_size && fe_ copy_tbfw "$appdir" -type f -name "TBT.bin" - [ -f "$_dest" ] || err "$board: Could not extract tbfw"; : } copy_tbfw() |