Skip to content

Commit

Permalink
Fix substitution issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus committed Oct 25, 2020
1 parent 02daeb3 commit d586102
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ runs:
filepaths+=("$path");
done
for file in $(find "${{ inputs.scandir }}" ${{ steps.exclude.outputs.excludes }} -type f ! -name '*.*' -perm /111 -print0); do
for file in $(find "${{ inputs.scandir }}" ${{ steps.exclude.outputs.excludes }} -type f ! -name '*.*' -perm /111 -print); do
head -n1 "$file" | grep -Eqs "$shebangregex" || continue
filepaths+=("$file");
done
Expand Down

0 comments on commit d586102

Please sign in to comment.