Skip to content

Commit

Permalink
cmd/cdi: fix warning printout.
Browse files Browse the repository at this point in the history
Signed-off-by: Krisztian Litkey <[email protected]>
  • Loading branch information
klihub committed Mar 1, 2024
1 parent 686617d commit 07fed87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/cdi/cmd/monitor.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ func monitorDirectories(dirs ...string) (*fsnotify.Watcher, error) {

for _, dir := range dirs {
if _, err = os.Stat(dir); err != nil {
fmt.Printf("WARNING: failed to stat dir %q, NOT watching it...", dir)
fmt.Printf("WARNING: failed to stat dir %q, NOT watching it...\n", dir)
continue
}

Expand Down

0 comments on commit 07fed87

Please sign in to comment.