From c6ba0a0e9b297606e89bd82655e48c40ac01becc Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Wed, 15 May 2024 04:02:48 +0100 Subject: option.sh: delete check_git() it's only used from main() in the main build script, and it's very small, as is main() therefore, move the logic into main() Signed-off-by: Leah Rowe --- build | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'build') diff --git a/build b/build index 3a345e11..2d95a500 100755 --- a/build +++ b/build @@ -29,7 +29,14 @@ main() [ "$1" = "dependencies" ] && x_ install_packages $@ && lbmk_exit 0 - for cmd in initcmd check_git git_init excmd; do + which git 1>/dev/null 2>/dev/null || \ + git_err "git not installed. please install git-scm." + git config --global user.name 1>/dev/null 2>/dev/null || \ + git_err "git config --global user.name \"John Doe\"" + git config --global user.email 1>/dev/null 2>/dev/null || \ + git_err "git config --global user.email \"john.doe@example.com\"" + + for cmd in initcmd git_init excmd; do eval "${cmd} \$@" done lbmk_exit 0 -- cgit v1.2.1