git.sh: simplified repo/backup check

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe 2024-06-20 00:46:51 +01:00 committed by Leah Rowe
parent acbefc558e
commit 109db65932

View file

@ -121,8 +121,7 @@ fetch_submodule()
st=""
for _st in repo file; do
_seval="if [ -n \"\$sub$_st\" ] || [ -n \"\$sub${_st}_bkup\" ]"
eval "$_seval; then st=\"\$st \$_st\"; fi"
eval "[ -n \"\$sub$_st\$sub${_st}_bkup\" ] && st=\"\$st \$_st\""
done
st="${st# }"
[ "$st" = "repo file" ] && $err "$mdir: repo/file both defined"