From 6e9b4701b3a582a7eda4091394de2c5bd860698b Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Sat, 25 Oct 2025 09:16:21 +0100 Subject: [PATCH] Do not bail out at the first error when running dev:outdated --- AGENTS.md | 4 ++-- scripts/dev/outdated | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index dc1ff278..24c2bdb9 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -69,10 +69,10 @@ mise run dev:console # Run static checks (format, credo, gettext) mise run dev:lint -# Show outdated dependencies (errors at first outdated) +# Show outdated dependencies mise run dev:outdated -# Update dependencies (errors at first outdated) +# Update dependencies mise run dev:update # Fix translation file conflicts diff --git a/scripts/dev/outdated b/scripts/dev/outdated index bbd89e2b..9d9a985e 100755 --- a/scripts/dev/outdated +++ b/scripts/dev/outdated @@ -1,8 +1,8 @@ #!/usr/bin/env bash -#MISE description="Show outdated dependencies. Errors at the firsst outdated dependency" +#MISE description="Show outdated dependencies." -set -e +# We purposefully do not set `set -e` here, as we want to see all outdated dependencies at once. source "$(git rev-parse --show-toplevel)/scripts/_helpers.sh"