diff options
| author | Leah Rowe <leah@libreboot.org> | 2026-07-21 20:12:44 +0100 |
|---|---|---|
| committer | Leah Rowe <leah@libreboot.org> | 2026-07-21 20:12:44 +0100 |
| commit | 1514e82be07d1a0b3abe54d010b467e24ee20fea (patch) | |
| tree | e15917060addb5633d77c61aa67622f9b45ae407 | |
| parent | 76e5a07774f0b3b6625d6f78847e555ab3ee4485 (diff) | |
init.sh: add --includes to git config check
just to be sure
this now matches util/gitconfig/gitconfig.sh in coreboot
Signed-off-by: Leah Rowe <leah@libreboot.org>
| -rw-r--r-- | include/init.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/init.sh b/include/init.sh index 1f5da62e..3c20e8bb 100644 --- a/include/init.sh +++ b/include/init.sh @@ -450,7 +450,7 @@ xbmk_set_mirror() xbmk_git_init() { for gitarg in "user.name" "user.email"; do - gitcmd="git config $gitarg" + gitcmd="git config --includes $gitarg" if ! $gitcmd 1>/dev/null 2>/dev/null; then err "Run this first: $gitcmd \"your ${gitcmd##*.}\"" \ "xbmk_git_init" "$@" |
