Skip to content

Commit

Permalink
Fixed typo in command
Browse files Browse the repository at this point in the history
  • Loading branch information
villyes-ledger committed Nov 3, 2024
1 parent 75d7d0c commit b7b9db6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish_generic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
node-version: 20

- name: Rename all .md files
run: ffind . -depth -name "*.md" -exec sh -c 'f="{}"; d="$(basename "$(dirname "$f")")"; mv -- "$f" "$(dirname "$f")/${d}_$(basename "$f")"' \;
run: find . -depth -name "*.md" -exec sh -c 'f="{}"; d="$(basename "$(dirname "$f")")"; mv -- "$f" "$(dirname "$f")/${d}_$(basename "$f")"' \;

- name: Replace comments with a space
run: find . -type f -name "*.md" -exec sed -i 's/<!--.*-->/ /g' {} +
Expand Down

0 comments on commit b7b9db6

Please sign in to comment.