Skip to content

Commit

Permalink
Don't evaluate wildcard
Browse files Browse the repository at this point in the history
  • Loading branch information
m-roberts committed Sep 2, 2021
1 parent 8b0c999 commit b9956ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if [ -n "$INPUT_FILES" ]; then
# Parse pattern matching in input files
files=()
for input_file_pattern in "${input_file_patterns[@]}"; do
readarray -d '' _files < <(find $(dirname "${input_file_pattern}") -type f -name $(basename "${input_file_pattern}") -print0)
readarray -d '' _files < <(find $(dirname "${input_file_pattern}") -type f -name "$(basename "${input_file_pattern}")" -print0)
echo "${_files[@]}"
files+=("${_files[@]}")
done
Expand Down

0 comments on commit b9956ec

Please sign in to comment.