From 9cf7487f24eb8061859ceb7785406779fa22e51a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20FAMIBELLE-PRONZOLA?= Date: Fri, 24 Jul 2026 20:31:35 +0400 Subject: [PATCH] fix: shellcheck SC2164 in scripts/check.sh --- scripts/check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check.sh b/scripts/check.sh index 0daadfc..f74fa2f 100755 --- a/scripts/check.sh +++ b/scripts/check.sh @@ -7,7 +7,7 @@ # code non nul si une vérification échoue. set -u -cd "$(dirname "$0")/.." +cd "$(dirname "$0")/.." || exit 1 fail=0 warn=0