From 3735d5c5373622b5d5f8011efd8399e1955f52af Mon Sep 17 00:00:00 2001 From: har7an <99636919+har7an@users.noreply.github.com> Date: Mon, 17 Jul 2023 01:08:44 +0000 Subject: [PATCH] steps/toolbx: Don't self-update and don't send notifications (#503) 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");