Skip to content

Commit

Permalink
Do not show redundant error inspection
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Aug 11, 2023
1 parent 5a99f1f commit 2224ef2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/setup_wsl/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func mustPersistDockerZshCompletions() {
err := os.Remove(completionLoadablePath)
if err != nil {
if os.IsNotExist(err) {
log.Printf("info - zsh completions files for docker not found, docker-desktop may not be executed: %+v\n", err)
log.Println("info - zsh completions files for docker not found, docker-desktop may not be executed")
} else {
log.Panicf("%+v\n", err)
}
Expand Down

0 comments on commit 2224ef2

Please sign in to comment.