mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-15 17:36:11 +02:00
git.sh: fix typo in git command
the || : condition should be used, whereas i just wrote : by mistake. this was done in a previous change. fix it now. Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
+1
-1
@@ -108,7 +108,7 @@ tmpclone()
|
|||||||
x_ mkdir -p "cache/repo"
|
x_ mkdir -p "cache/repo"
|
||||||
if [ -d "$repodir" ] && [ $# -lt 6 ]; then
|
if [ -d "$repodir" ] && [ $# -lt 6 ]; then
|
||||||
git -C "$repodir" pull || sleep 3 || git -C "$repodir" pull \
|
git -C "$repodir" pull || sleep 3 || git -C "$repodir" pull \
|
||||||
|| sleep 3 || git -C "$repodir" pull :
|
|| sleep 3 || git -C "$repodir" pull || :
|
||||||
else
|
else
|
||||||
git clone $1 "$repodir" || git clone $2 "$repodir" || \
|
git clone $1 "$repodir" || git clone $2 "$repodir" || \
|
||||||
$err "!clone $1 $2 $repodir $4 $5"
|
$err "!clone $1 $2 $repodir $4 $5"
|
||||||
|
|||||||
Reference in New Issue
Block a user