diff --git a/entrypoint.sh b/entrypoint.sh index 2b6de71..62531e4 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -4,9 +4,9 @@ set -o pipefail DIR=$2 -IGNORE=$3 +IGNORES=$3 -OUTPUT=$(depcheck --ignores="${IGNORE}" "${DIR}" 2>&1) && exit_status=$? || exit_status=$? +OUTPUT=$(depcheck --ignores="${IGNORES}" "${DIR}" 2>&1) && exit_status=$? || exit_status=$? echo "$OUTPUT" echo "::set-output name=exit_code::$exit_status"