From b68b682b55e5f1a4a2a0af7b600e9ad8f9018a19 Mon Sep 17 00:00:00 2001 From: Bryan Joshua Pedini Date: Wed, 4 Feb 2026 13:58:29 +0100 Subject: [PATCH] fix(update_child_repos.sh): add file existence check for file processing. - if file does not exist do NOT continue (hence process this file) - three way merging still works as before --- update_child_repos.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_child_repos.sh b/update_child_repos.sh index d9236d0..da3966c 100755 --- a/update_child_repos.sh +++ b/update_child_repos.sh @@ -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