From abe0b5e27ac281ae3c3633be566ab3ec5a0f29d6 Mon Sep 17 00:00:00 2001 From: "David J. Allen" Date: Thu, 30 Jan 2025 08:43:42 -0700 Subject: [PATCH] bugfix: fixed URL param not being set for UpdateFirmwareRemote --- cmd/update.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/update.go b/cmd/update.go index 83671e4..65e74c5 100644 --- a/cmd/update.go +++ b/cmd/update.go @@ -67,7 +67,7 @@ var updateCmd = &cobra.Command{ TransferProtocol: strings.ToUpper(transferProtocol), Insecure: Insecure, CollectParams: magellan.CollectParams{ - URI: host, + URI: arg, Username: username, Password: password, Timeout: timeout,