From 3f1a9acfc5dbe615f2ff945c97091926ed3d0072 Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Tue, 30 Nov 2021 14:58:11 -0500 Subject: [PATCH] Attempt to fix code quality check --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index d9db2c3..9d8233f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -40,7 +40,7 @@ pipeline { stage('Code Cleanliness') { agent any steps { - sh "php ./vendor/bin/phpstan analyse -c phpstan.neon -n --no-progress --no-ansi --error-format=checkstyle | awk '{$1=$1;print}' > build/logs/phpstan.log" + sh "php ./vendor/bin/phpstan analyse -c phpstan.neon -n --no-progress --no-ansi --error-format=checkstyle | awk '{$1=\$1;print}' > build/logs/phpstan.log" recordIssues( failOnError: false, tools: [phpStan(reportEncoding: 'UTF-8', pattern: 'build/logs/phpstan.log')]