From 659c63b43bd502aa138f6191261e2dd82188aba3 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 d5f9a50..0800a70 100644 --- a/cmd/update.go +++ b/cmd/update.go @@ -64,7 +64,7 @@ var updateCmd = &cobra.Command{ Component: component, TransferProtocol: strings.ToUpper(transferProtocol), CollectParams: magellan.CollectParams{ - URI: host, + URI: arg, Username: username, Password: password, Timeout: timeout,