diff --git a/cmd/configure.go b/cmd/configure.go index 9c89935..01671a2 100644 --- a/cmd/configure.go +++ b/cmd/configure.go @@ -155,6 +155,9 @@ func configureCmdRun(cmd *cobra.Command, args []string) { panic(err) } + // Manually specify the Panel URL as it won't be decoded from JSON. + cfg.PanelLocation = configureArgs.PanelURL + if err = config.WriteToDisk(cfg); err != nil { panic(err) }