Skip to content

Commit f53bfb2

Browse files
committed
chore: more friendly logs to docker installation
Signed-off-by: Daniel Hu <[email protected]>
1 parent bf41217 commit f53bfb2

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

internal/pkg/start/start.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package start
22

33
import (
44
"fmt"
5+
56
"github.com/devstream-io/devstream/internal/pkg/start/tool"
67
)
78

internal/pkg/start/tool/docker.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,11 @@ var toolDocker = tool{
4242
}
4343

4444
func waitForDockerRun() error {
45-
fmt.Println("\nPlease make sure your docker has been started. The OS may ask you to authorize it manually.")
45+
fmt.Println("\nI've tried to start Docker for you.")
46+
time.Sleep(time.Second)
47+
fmt.Println("But the OS may ask you to authorize it manually.")
48+
time.Sleep(time.Second)
49+
fmt.Println("Please make sure your docker has been started.")
4650
fmt.Println()
4751
time.Sleep(time.Second)
4852
prompt := promptui.Prompt{

0 commit comments

Comments
 (0)