Skip to content

Commit 00c5f7c

Browse files
authored
Quick fix to translate / into - (#85)
1 parent 6019d0c commit 00c5f7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

operations/_scripts/generate/generate_buckets_identifiers.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e
44

5-
GITHUB_IDENTIFIER="$(echo $($GITHUB_ACTION_PATH/operations/_scripts/generate/generate_identifier.sh) | tr '[:upper:]' '[:lower:]' | tr '_' '-' )"
5+
GITHUB_IDENTIFIER="$(echo $($GITHUB_ACTION_PATH/operations/_scripts/generate/generate_identifier.sh) | tr '[:upper:]' '[:lower:]' | tr '_' '-' | tr '/' '-' )"
66

77
case $1 in
88
tf)

0 commit comments

Comments
 (0)