fixed update script, ignored cursor
Some checks failed
Update Child Repos / update (push) Failing after 10s

This commit is contained in:
2025-12-17 15:44:34 +01:00
parent 4332a3ab41
commit 2b04953bd5
3 changed files with 6 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
LICENSE
dockerfile
makefile
.makeVars
.vars
.cursor
*.md
*.sh

1
.gitignore vendored
View File

@@ -1 +1,2 @@
.cursor
*.sql

View File

@@ -38,7 +38,7 @@ if [ -z "${CLONE_URLS}" ]; then
exit 0
fi
declare -a REPOS_WITH_CONFLICTS
declare -a REPOS_WITH_CONFLICTS=()
while IFS= read -r clone_url; do
if [ -z "${clone_url}" ]; then
@@ -118,11 +118,13 @@ while IFS= read -r clone_url; do
else
echo "Warning: Merge conflicts detected in ${repo_name}"
popd
rm -rf "${repo_name}"
continue
fi
fi
popd
rm -rf "${repo_name}"
done <<< "${CLONE_URLS}"
if [ ${#REPOS_WITH_CONFLICTS[@]} -gt 0 ]; then