We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c45fade commit 938f4ebCopy full SHA for 938f4eb
1 file changed
cmd/cmd.go
@@ -164,10 +164,16 @@ func Install(b backend.Backend, targets []string) error {
164
}
165
166
func InstallPlatform(b backend.Backend) error {
167
+ fmt.Println("Installing Platform...")
168
if err := installDataContainers(b); err != nil {
169
return err
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
177
178
179
func installDataContainers(b backend.Backend) error {
0 commit comments