diff --git a/.github/workflows/contrib.yml b/.github/workflows/contrib.yml index 35bcc4a..e6c5bd8 100644 --- a/.github/workflows/contrib.yml +++ b/.github/workflows/contrib.yml @@ -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