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 LICENSE
dockerfile dockerfile
makefile makefile
.makeVars .vars
.cursor
*.md *.md
*.sh *.sh

1
.gitignore vendored
View File

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

View File

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