From 276fbf42a6436818ce6fa7e121382921a8b0d7a3 Mon Sep 17 00:00:00 2001 From: Daniel Ciborowski Date: Thu, 22 Jul 2021 23:23:56 -0400 Subject: [PATCH] Update entrypoint.sh --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 3dc0de5..47c9d15 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -21,7 +21,7 @@ pylint --version echo "[action-pylint] Checking python code with the pylint linter and reviewdog..." exit_val="0" -pylint --rcfile ../.pylintrc -s n ${INPUT_WORKDIR} 2>&1 | # Removes ansi codes see https://github.com/reviewdog/errorformat/issues/51 +pylint --rcfile .pylintrc -s n ${INPUT_WORKDIR} 2>&1 | # Removes ansi codes see https://github.com/reviewdog/errorformat/issues/51 /tmp/reviewdog -efm="%f:%l:%c: %m" \ -name="${INPUT_TOOL_NAME}" \ -reporter="${INPUT_REPORTER}" \