From 6e1b8087c5133b4f9a384df6ea7de3250ea8e573 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Wed, 5 Jun 2024 11:26:08 +0100 Subject: move id check to lib.sh too doesn't really matter, it's just an extra layer to ensure reliability, but "id" is pretty standard Signed-off-by: Leah Rowe --- include/lib.sh | 1 + 1 file changed, 1 insertion(+) (limited to 'include') diff --git a/include/lib.sh b/include/lib.sh index 23dfe81a..6a4be7ee 100755 --- a/include/lib.sh +++ b/include/lib.sh @@ -61,6 +61,7 @@ install_packages() } [ $# -gt 0 ] && [ "$1" = "dependencies" ] && install_packages $@ && return 0 +id -u 1>/dev/null 2>/dev/null || $err "suid check failed (id -u)" [ "$(id -u)" != "0" ] || $err "this command as root is not permitted" # if "y": a coreboot target won't be built if target.cfg says release="n" -- cgit v1.2.1