From e8a4d204528b626907bc08954d91ab86af38551b Mon Sep 17 00:00:00 2001 From: Andreas Hartmann Date: Sun, 16 Jul 2023 16:42:44 +0200 Subject: [PATCH] steps/toolbx: Don't send notification after finishing execution in the toolbx step, and don't perform another self-update (because the application will already have done that). --- src/steps/toolbx.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/steps/toolbx.rs b/src/steps/toolbx.rs index 8525efb8..d6e5b022 100644 --- a/src/steps/toolbx.rs +++ b/src/steps/toolbx.rs @@ -52,6 +52,8 @@ pub fn run_toolbx(ctx: &ExecutionContext) -> Result<()> { topgrade_path, "--only", "system", + "--no-self-update", + "--skip-notify", ]; if ctx.config().yes(Step::Toolbx) { args.push("--yes");