From f282b2173f157943cab1a2e64f14054acffd8eb5 Mon Sep 17 00:00:00 2001 From: goldsquid Date: Fri, 19 Dec 2025 13:01:20 +0700 Subject: [PATCH] more useful --- show-static-file-size.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/show-static-file-size.sh b/show-static-file-size.sh index 52e37c55..8face440 100755 --- a/show-static-file-size.sh +++ b/show-static-file-size.sh @@ -22,7 +22,8 @@ for key in $keys; do # Print the size of the file or directory size=$(du -sL "$prefix/_data/$path" 2>/dev/null | awk '{print $1}') static_size=$((static_size + size)) - #echo "$path: $size" + # Print the detected path to stderr so it doesn't interfere with ratio output + echo "$prefix/_data/$path" >&2 fi done < static-file-path-list.txt done