diff --git a/entrypoint.sh b/entrypoint.sh index 1b46993..933cbbb 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -11,4 +11,6 @@ echo "Processing event '$GITHUB_EVENT_NAME'" echo "List of files with absent license:" echo "===================================" -echo /app/addlicense -check "$1" "$INPUT_INPUT_FILES" | sh +for file in $INPUST_INPUT_FILES; do + echo /app/addlicense -check "$1" $file | sh +done