From fc667763fa770ebff20f684afb701fabc3e58fed Mon Sep 17 00:00:00 2001 From: PowerfulBacon <26465327+PowerfulBacon@users.noreply.github.com> Date: Thu, 22 Aug 2024 23:21:21 +0100 Subject: [PATCH] Update check_path_names.sh --- tools/ci/check_path_names.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci/check_path_names.sh b/tools/ci/check_path_names.sh index 5884a9c1d8538..ee158995f8bde 100644 --- a/tools/ci/check_path_names.sh +++ b/tools/ci/check_path_names.sh @@ -25,7 +25,7 @@ find code/ -type f -name "*.dm" | while IFS= read -r file; do matches=$(grep -Po "$regex_path_name" "$file" || true) if [[ -n "$matches" ]]; then - echo -e "${RED}Violation found in file: $file${NC}" + echo -e "${RED}ERROR: Non-snake case proc found in file: $file${NC}" echo "$matches" st=1 fi