From d59b185cf247ec99621833d1eeafb75176339f5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milan=20Felix=20=C5=A0ulc?= Date: Fri, 1 Jan 2021 14:59:35 +0100 Subject: [PATCH] Bin: show installed coding standard only if CI env is not presented --- bin/codesniffer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/codesniffer b/bin/codesniffer index 3210ede..519d737 100755 --- a/bin/codesniffer +++ b/bin/codesniffer @@ -28,7 +28,7 @@ else fi # Show installed coding standards -${DIR}/phpcs -i +[[ -z "${CI}" ]] && ${DIR}/phpcs -i # Run sniffing if [ -z "$1" ]; then