Skip errors when fetching and pulling changes

This commit is contained in:
Oliver Davies 2025-03-27 22:07:10 +00:00
parent d9f50762a7
commit b583d82e5d

View file

@ -20,6 +20,6 @@ for dir in $dirs; do
echo "Updating $(pwd)"
# Update the repository.
git fetch --all --jobs=4 --progress --prune
git pull --rebase
git fetch --all --jobs=4 --progress --prune || true
git pull --rebase || true
done