Skip to content

Commit 938f4eb

Browse files
author
Matthew Fisher
committed
feat(cmd): add informative messages to install
1 parent c45fade commit 938f4eb

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

cmd/cmd.go

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,10 +164,16 @@ func Install(b backend.Backend, targets []string) error {
164164
}
165165

166166
func InstallPlatform(b backend.Backend) error {
167+
fmt.Println("Installing Platform...")
167168
if err := installDataContainers(b); err != nil {
168169
return err
169170
}
170-
return installDefaultServices(b)
171+
if err := installDefaultServices(b); err != nil {
172+
return err
173+
}
174+
fmt.Println("Platform installed.")
175+
fmt.Println("Please run `deisctl start platorm` to boot up the platform.")
176+
return nil
171177
}
172178

173179
func installDataContainers(b backend.Backend) error {

0 commit comments

Comments
 (0)