From e102f6dcc7aac0ea3944f8169c689e45a8025f65 Mon Sep 17 00:00:00 2001 From: charludo Date: Wed, 18 Dec 2024 08:28:38 +0100 Subject: [PATCH] Fix: prevent early exit of tools/code_style.sh after exit code 1 --- tools/code_style.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/code_style.sh b/tools/code_style.sh index 8f751f83c0..a7a55deea5 100755 --- a/tools/code_style.sh +++ b/tools/code_style.sh @@ -10,19 +10,19 @@ require_installed ensure_not_root # Run ruff -bash "${DEV_TOOL_DIR}/ruff.sh" +bash "${DEV_TOOL_DIR}/ruff.sh" || : # Run black -bash "${DEV_TOOL_DIR}/black.sh" +bash "${DEV_TOOL_DIR}/black.sh" || : # Run djlint -bash "${DEV_TOOL_DIR}/djlint.sh" +bash "${DEV_TOOL_DIR}/djlint.sh" || : # Run pylint -bash "${DEV_TOOL_DIR}/pylint.sh" +bash "${DEV_TOOL_DIR}/pylint.sh" || : # Run eslint -bash "${DEV_TOOL_DIR}/eslint.sh" +bash "${DEV_TOOL_DIR}/eslint.sh" || : # Run prettier -bash "${DEV_TOOL_DIR}/prettier.sh" +bash "${DEV_TOOL_DIR}/prettier.sh" || :