From 0bfad9e9e06c20777abcd832f31dfab5b71ec4a7 Mon Sep 17 00:00:00 2001 From: "aleksandr.vodyanov" Date: Fri, 17 May 2024 17:42:27 +0300 Subject: [PATCH] up --- entrypoint.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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