Skip to content

Commit

Permalink
ci: fix contrib rename step
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar committed Dec 11, 2024
1 parent 60ea9cb commit b06d335
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/contrib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
- name: Lowercase filenames and replace underscores
run: |
for f in hyper/docs/*; do
mv -vn "$f" "$(echo \"$f\" | tr '[:upper:]' '[:lower:]' | tr '_' '-')" || true;
mv -vn "$f" "$(echo "$f" | tr '[:upper:]' '[:lower:]' | tr '_' '-')" || true;
done
- name: Copy the hyper docs to contrib
Expand Down

0 comments on commit b06d335

Please sign in to comment.