From 9742e591b43885ec5d1e175f5cb95147933b9271 Mon Sep 17 00:00:00 2001 From: AlexSanchez-bit Date: Fri, 9 Jan 2026 08:06:18 -0500 Subject: [PATCH] feat[installer](imagen_download): removed edition from image download --- installer/install.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/install.go b/installer/install.go index 0cd337b1a..fd301e895 100644 --- a/installer/install.go +++ b/installer/install.go @@ -193,8 +193,8 @@ func Install(specificVersion string) error { } fmt.Println(" [OK]") - fmt.Printf("Installing UTMStack version %s-%s. This may take a while.\n", version.Version, version.Edition) - err = docker.StackUP(version.Version + "-" + version.Edition) + fmt.Printf("Installing UTMStack version %s. This may take a while.\n", version.Version) + err = docker.StackUP(version.Version) if err != nil { return err }