Skip to content

Commit 73d21d3

Browse files
committed
fix: error message when no container cli tool is found
1 parent 62d2cc2 commit 73d21d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/container/docker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ func detectDocker() (command string, args []string, err error) {
2727
slog.Info("command failed.", "command", strings.Join(backend, " "), "output", output)
2828
}
2929

30-
return "", nil, fmt.Errorf("compose cli not found")
30+
return "", nil, fmt.Errorf("docker cli not found")
3131
}
3232

3333
func prepareDockerCommand(commandArgs ...string) (command string, args []string, err error) {

0 commit comments

Comments
 (0)