We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf41217 commit f53bfb2Copy full SHA for f53bfb2
internal/pkg/start/start.go
@@ -2,6 +2,7 @@ package start
2
3
import (
4
"fmt"
5
+
6
"github.com/devstream-io/devstream/internal/pkg/start/tool"
7
)
8
internal/pkg/start/tool/docker.go
@@ -42,7 +42,11 @@ var toolDocker = tool{
42
}
43
44
func waitForDockerRun() error {
45
- fmt.Println("\nPlease make sure your docker has been started. The OS may ask you to authorize it manually.")
+ 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
49
+ fmt.Println("Please make sure your docker has been started.")
50
fmt.Println()
51
time.Sleep(time.Second)
52
prompt := promptui.Prompt{
0 commit comments