This is an automated email from the ASF dual-hosted git repository.
danny0405 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/master by this push:
new 3c3fedd5bda1 [MINOR] Fix typo (change snake_case to camelCase) (#13706)
3c3fedd5bda1 is described below
commit 3c3fedd5bda1f94bd40fcbf648aaef384acf583f
Author: voonhous <[email protected]>
AuthorDate: Mon Aug 11 20:02:53 2025 +0800
[MINOR] Fix typo (change snake_case to camelCase) (#13706)
---
scripts/release/validate_source_copyright.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/release/validate_source_copyright.sh
b/scripts/release/validate_source_copyright.sh
index 788e5ec53a22..33cecd175297 100755
--- a/scripts/release/validate_source_copyright.sh
+++ b/scripts/release/validate_source_copyright.sh
@@ -55,7 +55,7 @@ numfilesWithNoLicense=$(find . -path './hudi-trino-plugin'
-prune -o -type f -in
if [ -n "$numfilesWithNoLicense" ]; then
# If the list isn't empty, count the files and report the error
numFiles=$(echo "$numfilesWithNoLicense" | wc -l)
- echo "There were ${num_files} source files that did not have Apache License
[ERROR]"
+ echo "There were ${numFiles} source files that did not have Apache License
[ERROR]"
echo "$numfilesWithNoLicense"
exit 1
fi