git.sh: revert modification to for loop

i tried to be clever with this one, but it just made
the script exit with an error.

revert back to the old check (check whether one of
either repo or repo backup is set)

Signed-off-by: Leah Rowe <leah@libreboot.org>
audit6
Leah Rowe 2024-06-20 01:42:10 +01:00
parent bc61c39ec8
commit d65e4fac1d
1 changed files with 3 additions and 1 deletions

View File

@ -118,8 +118,10 @@ fetch_submodule()
$err "! . $mcfgdir/module.cfg" $err "! . $mcfgdir/module.cfg"
for xt in repo file; do for xt in repo file; do
eval "[ -n \"\$sub$xt\$sub${xt}_bkup\" ] && st=\"\$st \$xt\"" _seval="if [ -n \"\$sub$xt\" ] || [ -n \"\$sub${xt}_bkup\" ]"
eval "$_seval; then st=\"\$st \$xt\"; fi"
done done
st="${st# }" && [ "$st" = "repo file" ] && $err "$mdir: repo+file" st="${st# }" && [ "$st" = "repo file" ] && $err "$mdir: repo+file"
[ -z "$st" ] && return 0 # subrepo/subfile not defined [ -z "$st" ] && return 0 # subrepo/subfile not defined