From c54e7709143aeee7365eef8b0d6cf87356088e12 Mon Sep 17 00:00:00 2001 From: rain Date: Thu, 25 Jun 2026 18:41:21 -0400 Subject: [PATCH] topgrade: drop ignore_failures so step failures halt the run Previously 'node' failures were silently skipped. With this removed, any non-zero step exit code aborts the run, matching the user preference of 'I dont want it to skip anything'. --- dot_config/topgrade/topgrade.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dot_config/topgrade/topgrade.toml b/dot_config/topgrade/topgrade.toml index 06239ef..7e879a1 100644 --- a/dot_config/topgrade/topgrade.toml +++ b/dot_config/topgrade/topgrade.toml @@ -10,8 +10,7 @@ # Without this, topgrade will pause for password mid-run on each sudo invocation. pre_sudo = true -# Don't fail the whole run if one step fails. -ignore_failures = ["node"] +# No ignore_failures — any step failure halts the run; nothing is skipped. # Print the time in step titles for verbose output. display_time = true