Skip to content

Commit

Permalink
Fixed bug with any_changed boolean (#68)
Browse files Browse the repository at this point in the history
Closes: #67
  • Loading branch information
jackton1 committed May 16, 2021
1 parent 8fac2f4 commit 7c66aa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Expand Up @@ -142,7 +142,7 @@ runs:
if [[ -n "$INPUT_FILES" ]]; then
# shellcheck disable=SC2001
OUTPUT_ALL_MODIFIED_FILES=$(echo "$ALL_MODIFIED_FILES" | sed "s/$INPUT_SEPARATOR/ /g")
OUTPUT_ALL_MODIFIED_FILES=$(echo "$ALL_MODIFIED_FILES" | tr "$INPUT_SEPARATOR" " " | xargs)
ALL_INPUT_FILES=$(echo "$INPUT_FILES" | tr "\n" " " | xargs)
echo "Input files: ${ALL_INPUT_FILES[@]}"
Expand Down

0 comments on commit 7c66aa2

Please sign in to comment.