From 81ad4b874479c31a00285815995079e20c6c2779 Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Sun, 5 Sep 2021 14:21:28 -0400 Subject: [PATCH] Update entrypoint.sh --- entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 06ac2fb6..e227738e 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -155,7 +155,7 @@ else OTHER_DELETED_FILES=$(echo "${OTHER_DELETED_FILES_ARRAY[*]}" | tr " " "\n" | sort -u | awk -v d="$INPUT_SEPARATOR" '{s=(NR==1?s:s d)$0}END{print s}') - echo "Matching modified files: ${UNIQUE_DELETED_FILES_ARRAY[*]}" + echo "Matching deleted files: ${UNIQUE_DELETED_FILES_ARRAY[*]}" if [[ -n "${UNIQUE_DELETED_FILES_ARRAY[*]}" ]]; then echo "::set-output name=any_deleted::true" @@ -164,7 +164,7 @@ else fi if [[ -n "${OTHER_DELETED_FILES_ARRAY[*]}" ]]; then - echo "Non Matching modified files: ${OTHER_DELETED_FILES_ARRAY[*]}" + echo "Non Matching deleted files: ${OTHER_DELETED_FILES_ARRAY[*]}" echo "::set-output name=only_deleted::false" echo "::set-output name=other_deleted_files::$OTHER_DELETED_FILES" elif [[ -n "${UNIQUE_DELETED_FILES_ARRAY[*]}" ]]; then