Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions installer/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down