From 8649d269df25450775ee21da69a5f8263802b225 Mon Sep 17 00:00:00 2001 From: Mark Visschers Date: Thu, 30 Oct 2025 07:05:03 +0100 Subject: [PATCH] fixes missing flag for update from gallery --- private/Get-Commands.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/private/Get-Commands.ps1 b/private/Get-Commands.ps1 index 38b7e21..124f6f7 100644 --- a/private/Get-Commands.ps1 +++ b/private/Get-Commands.ps1 @@ -29,7 +29,7 @@ function Get-Commands { ) ) [Command]::new("version", { Write-Host (Get-MyModuleVersion) } ) - [Command]::new("update", "Update-QuickPath") + [Command]::new("update", { Update-QuickPath -FromGallery }) ) } return $script:CachedCommands