From df6e28f53689360ffea0fb8baba0612e96d253c4 Mon Sep 17 00:00:00 2001 From: Bert McCutchen Date: Sun, 4 Feb 2024 21:22:14 -0500 Subject: [PATCH] Redirected Stylelint STDERR to STDOUT --- script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script.sh b/script.sh index 37c5cbd..b80ebc4 100755 --- a/script.sh +++ b/script.sh @@ -16,7 +16,7 @@ __run_stylelint() { cmd="${cmd} --ignore-pattern='${INPUT_STYLELINT_IGNORE}'" fi - npx --no-install -c "${cmd}" + npx --no-install -c "${cmd}" 2>&1 } __run_reviewdog() {