From 50c395df59564c19d3a24262810c8dd5ed115db5 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Thu, 24 Aug 2023 16:37:40 +0100 Subject: .gitcheck: continue if no .git (don't break) the user may have re-downloaded a coreboot tree, in a release. this is supported. therefore, some may have .git, and some will not Signed-off-by: Leah Rowe --- .gitcheck | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.gitcheck') diff --git a/.gitcheck b/.gitcheck index 8a2b5a90..0e5df8bd 100755 --- a/.gitcheck +++ b/.gitcheck @@ -29,7 +29,7 @@ set_placeholders() [ -d coreboot ] || return 0 for x in coreboot/*; do [ -d "${x}" ] || continue - [ -e "${x}/.git" ] || break + [ -e "${x}/.git" ] || continue ( cd "${x}" set_git_credentials @@ -55,7 +55,7 @@ clean() [ -d coreboot ] || return 0 for x in coreboot/*; do [ -d "${x}" ] || continue - [ -e "${x}/.git" ] || break + [ -e "${x}/.git" ] || continue ( cd "${x}" unset_placeholders -- cgit v1.2.1