Skip to content

Commit

Permalink
fix print url as string
Browse files Browse the repository at this point in the history
  • Loading branch information
nopcoder committed Jul 27, 2023
1 parent 5fac10a commit 6683505
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/lakectl/cmd/fs_download.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ var fsDownloadCmd = &cobra.Command{
if err == nil {
fmt.Printf("Successfully downloaded %s to %s\n", src.String(), dst)
} else {
_, _ = fmt.Fprintf(os.Stderr, "Download failed: %s to %s - %s\n", src, dst, err)
_, _ = fmt.Fprintf(os.Stderr, "Download failed: %s to %s - %s\n", src.String(), dst, err)
atomic.AddInt64(&errCounter, 1)
}
}
Expand Down

0 comments on commit 6683505

Please sign in to comment.