Skip to content

Commit f616ac2

Browse files
authored
Merge pull request #80 from thin-edge/fix-docker-cli-error-message
fix: error message when no container cli tool is found
2 parents da17737 + 73d21d3 commit f616ac2

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)