summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2025-05-27 11:29:04 +0100
committerLeah Rowe <leah@libreboot.org>2025-05-27 11:29:04 +0100
commitbc9ea0a1aa08bfebac35c458c030f71e2c2d0614 (patch)
treec6b513063ab0c5ac145651a7d9dd4f65c11c2850
parentad851804b8598b1bea0e349e0e834b06b0c98b92 (diff)
inject.sh: add missing semicolons
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r--include/inject.sh2
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; :
}