Skip to content

Commit 1d9e114

Browse files
committed
fix: more robust filename handling
1 parent bc0ba81 commit 1d9e114

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/count-changes

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ mkdir -p "$TEMP_DIR/old"
4949
mkdir -p "$TEMP_DIR/new"
5050

5151
# Extract all changed files
52-
for file in $FILES; do
52+
echo "$FILES" | while read -r file; do
5353
if [ -f "$file" ]; then
5454
# Create directory structure
5555
dir=$(dirname "$file")

0 commit comments

Comments
 (0)