Skip to content

Commit 9fc93a4

Browse files
committed
Use character classes to support other locales
1 parent 2234c09 commit 9fc93a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/ci/circle/script

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ run_tests() {
399399
path="${test#${base_dir}/}"
400400

401401
# Slugify the path (basic algorithm):
402-
slug="$(echo ${path} | sed -e 's/[^[:alnum:]]/_/g' | tr -s '-' | tr A-Z a-z)"
402+
slug="$(echo ${path} | sed -e 's/[^[:alnum:]]/_/g' | tr -s '-' | tr '[:upper:]' '[:lower:]')"
403403

404404
# Define the output log file path:
405405
log_file="$2/test-results.${slug}.xml"

0 commit comments

Comments
 (0)