From 56ed7fb9cb01747ecd7e1e271fad2264ec9e145b Mon Sep 17 00:00:00 2001 From: Raine Date: Thu, 26 Oct 2023 14:45:04 +0200 Subject: [PATCH] feat: added SKIP_CHECK for skipping checks --- tools/repo/check.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/repo/check.sh b/tools/repo/check.sh index cb5721c..9769c75 100755 --- a/tools/repo/check.sh +++ b/tools/repo/check.sh @@ -2,7 +2,8 @@ set -e set -o pipefail -for c in tools/repo/check.d/*; do + +[ "${SKIP_CHECK:-no}" = "yes" ] || for c in tools/repo/check.d/*; do echo "running $c..." $c | while read line; do echo "$c: $line"