From cba9dc1c2ce8b37e0dca5e3288f753b1fb6483e4 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Mon, 9 Jan 2023 09:50:21 +0200 Subject: [PATCH] Fix windows build (#303) --- src/steps/os/windows.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/steps/os/windows.rs b/src/steps/os/windows.rs index 987704aa..aff201dc 100644 --- a/src/steps/os/windows.rs +++ b/src/steps/os/windows.rs @@ -48,7 +48,7 @@ pub fn run_winget(ctx: &ExecutionContext) -> Result<()> { } ctx.run_type() - .execute(&winget) + .execute(winget) .args(["upgrade", "--all"]) .status_checked() }