From 8d732c8961357c71eb830849757551119cfdddac Mon Sep 17 00:00:00 2001 From: emperorsixpacks Date: Fri, 10 Oct 2025 14:16:29 +0100 Subject: [PATCH] fix: installer --- cli/commands/configCommand/newConfigCommand.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cli/commands/configCommand/newConfigCommand.go b/cli/commands/configCommand/newConfigCommand.go index 3a2b754..ed10063 100644 --- a/cli/commands/configCommand/newConfigCommand.go +++ b/cli/commands/configCommand/newConfigCommand.go @@ -206,9 +206,8 @@ func installClients(starknetNode, validator bool, consensusClient, executionClie if starknetNode { err := options.Installer.InstallClient(types.ClientJuno) if errors.Is(err, pkg.ErrClientIsInstalled) { - fmt.Println(utils.Yellow(fmt.Sprintf("🤔 Client Juno is already installed. Skipping."))) - } else { - + fmt.Println(utils.Yellow("🤔 Client Juno is already installed. Skipping.")) + } else if err != nil { fmt.Println(utils.Red(fmt.Sprintf("❌ Could not install client Juno: %v", err))) return }