build: do root check before git check

otherwise, git could be initialised as root.

running as root is not allowed.

Signed-off-by: Leah Rowe <leah@libreboot.org>
20240612_branch
Leah Rowe 2024-05-25 16:34:48 +01:00
parent 8d199a31d1
commit db06bbdb6e
1 changed files with 2 additions and 2 deletions

4
build
View File

@ -30,13 +30,13 @@ main()
[ "$1" = "dependencies" ] && x_ install_packages $@ && return 0
[ "$(id -u)" != "0" ] || $err "this command as root is not permitted"
for g in "which git" "git config --global user.name" \
"git config --global user.email" "git_init"; do
eval "$g 1>/dev/null 2>/dev/null || git_err \"$g\""
done
[ "$(id -u)" != "0" ] || $err "this command as root is not permitted"
case "${1}" in
version) printf "%s\n" "$relname" ;;
release) shift 1; mkrelease $@ ;;