From 4d20de926c43147682c847fd5c2151646c40cc8c Mon Sep 17 00:00:00 2001 From: Bishoy Ehab Date: Fri, 17 Oct 2025 14:48:16 +0300 Subject: [PATCH] Fix: Prevent script exit in while-read loop --- sdata/exp/update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdata/exp/update.sh b/sdata/exp/update.sh index b74254745..774d3c6b2 100755 --- a/sdata/exp/update.sh +++ b/sdata/exp/update.sh @@ -913,7 +913,7 @@ if [[ "$process_files" == true ]]; then fi ((files_created++)) fi - done < <(get_changed_files "$repo_dir_path") + done < <(get_changed_files "$repo_dir_path") || true done echo