Skip to content

Commit b06d335

Browse files
committed
ci: fix contrib rename step
1 parent 60ea9cb commit b06d335

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/contrib.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
- name: Lowercase filenames and replace underscores
9797
run: |
9898
for f in hyper/docs/*; do
99-
mv -vn "$f" "$(echo \"$f\" | tr '[:upper:]' '[:lower:]' | tr '_' '-')" || true;
99+
mv -vn "$f" "$(echo "$f" | tr '[:upper:]' '[:lower:]' | tr '_' '-')" || true;
100100
done
101101
102102
- name: Copy the hyper docs to contrib

0 commit comments

Comments
 (0)