diff --git a/entrypoint.sh b/entrypoint.sh index 93bcf24..6e8ad8c 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -4,8 +4,7 @@ set -eo pipefail npm install -g "depcheck@${INPUT_VERSION}" -OUTPUT=$(depcheck --ignores="${INPUT_IGNORES}" "${INPUT_DIR}" 2>&1) && exit_status=$? || exit_status=$? -echo "$OUTPUT" +depcheck --ignores="${INPUT_IGNORES}" "${INPUT_DIR}" 2>&1 && exit_status=$? || exit_status=$? echo "::set-output name=exit_code::$exit_status"