diff options
author | Leah Rowe <leah@libreboot.org> | 2025-05-27 11:29:04 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-05-27 11:29:04 +0100 |
commit | bc9ea0a1aa08bfebac35c458c030f71e2c2d0614 (patch) | |
tree | c6b513063ab0c5ac145651a7d9dd4f65c11c2850 | |
parent | ad851804b8598b1bea0e349e0e834b06b0c98b92 (diff) |
inject.sh: add missing semicolons
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r-- | include/inject.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/inject.sh b/include/inject.sh index 80ab8b49..de97de71 100644 --- a/include/inject.sh +++ b/include/inject.sh @@ -61,7 +61,7 @@ check_release() *_src.tar.xz) err "'$archive' is a src archive, silly!" ;; *.tar.xz) _stripped_prefix="${archivename#*_}" board="${_stripped_prefix%.tar.xz}" ;; - *) err "'$archive': could not detect board type" + *) err "'$archive': could not detect board type" ;; esac; : } |