fix(update_child_repos.sh): add file existence check for file processing.
All checks were successful
Update Child Repos / update (push) Successful in 11s

- if file does not exist do NOT continue (hence process this file)
- three way merging still works as before
This commit is contained in:
2026-02-04 13:58:29 +01:00
parent 24e45d728d
commit b68b682b55

View File

@@ -88,7 +88,7 @@ while IFS= read -r clone_url; do
conflicted_files=()
for file in ${FILES_TO_UPDATE}; do
if ! is_file_changed "${file}"; then
if ! is_file_changed "${file}" && [ -f "${file}" ]; then
continue
fi