Skip to content

Commit

Permalink
find is now case insensitive
Browse files Browse the repository at this point in the history
Signed-off-by: muraca <[email protected]>
  • Loading branch information
muraca committed Oct 25, 2023
1 parent 71866a2 commit 39625e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ runs:
- if: ${{ inputs.all }}
name: "Running TOML Sort check on all TOML files starting from current directory"
shell: "bash"
run: find . -name "*.toml" -not -path "./target/*" | xargs -L1 ./toml-sort --check
run: find . -iname "*.toml" -not -path "./target/*" | xargs -L1 ./toml-sort --check
- if: ${{ !inputs.all }}
name: "Running TOML Sort check on given files"
shell: "bash"
Expand Down

0 comments on commit 39625e4

Please sign in to comment.