From f45f5e625daa119ec5c830290164a1a469054da7 Mon Sep 17 00:00:00 2001
From: Leah Rowe <leah@libreboot.org>
Date: Sat, 9 Sep 2023 22:30:22 +0100
Subject: update/project/*: remove redundant checks

these scripts used to be in the main directory of
lbmk, and thus needed to check for root user, and
also git credentials. now they are called by the main
lbmk script, which also runs the same checks.

avoid waste of resources by not running the same
check twice.

Signed-off-by: Leah Rowe <leah@libreboot.org>
---
 script/update/project/trees | 7 -------
 1 file changed, 7 deletions(-)

(limited to 'script/update/project/trees')

diff --git a/script/update/project/trees b/script/update/project/trees
index 2b99160c..0c4e9d58 100755
--- a/script/update/project/trees
+++ b/script/update/project/trees
@@ -34,13 +34,6 @@ cfgsdir=""
 
 main()
 {
-	id -u 1>/dev/null 2>/dev/null || \
-	    err "cannot ascertain user id"
-	if [ "$(id -u)" = "0" ]; then
-		err "running lbmk as root is not permitted"
-	fi
-	./checkgit || err "Please read: https://libreboot.org/docs/build/"
-
 	rm -f "${cfgsdir}"/*/seen || err_rm_seen "main 1"
 
 	printf "Downloading %s and (if available) applying patches\n" \
-- 
cgit v1.2.1