Skip to content

Commit

Permalink
Update tree_sitter_maker.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
garam-kim1 authored Apr 15, 2024
1 parent 370116a commit 0dd370e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/tree_sitter_maker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,12 @@ jobs:
find . -type f -name '*python*' -exec bash -c 'mv "$0" "${0//python/mojo}"' {} \;
find . -type f -name '*Python*' -exec bash -c 'mv "$0" "${0//Python/Mojo}"' {} \;
find . -type f -name '*PYTHON*' -exec bash -c 'mv "$0" "${0//PYTHON/MOJO}"' {} \;
find . -depth -type d -name '*python*' -execdir bash -c 'mv "$1" "${1//python/mojo}"' bash {} \;
find . -depth -type d -name '*python*' -execdir bash -c 'mv "$1" "${1//Python/Mojo}"' bash {} \;
find . -depth -type d -name '*python*' -execdir bash -c 'mv "$1" "${1//PYTHON/MOJO}"' bash {} \;
mv bindings/mojo bindings/python
- name: Restore backups
run: |
mkdir -p .github/workflows
Expand Down

0 comments on commit 0dd370e

Please sign in to comment.