Nit: remove missing newlines on weed shell commands output. (#6524)

Nit: remove missing newlines on `weed` commands output.
This commit is contained in:
Lisandro Pin 2025-02-07 19:27:04 +01:00 committed by GitHub
parent 8eab76c5db
commit e8d8bfcccc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ func RunMount(option *MountOptions, umask os.FileMode) bool {
// basic checks
chunkSizeLimitMB := *mountOptions.chunkSizeLimitMB
if chunkSizeLimitMB <= 0 {
fmt.Printf("Please specify a reasonable buffer size.")
fmt.Printf("Please specify a reasonable buffer size.\n")
return false
}

View File

@ -1082,7 +1082,7 @@ func EcBalance(commandEnv *CommandEnv, collections []string, dc string, ecReplic
}
if len(collections) == 0 {
fmt.Printf("WARNING: No collections to balance EC volumes across.")
fmt.Printf("WARNING: No collections to balance EC volumes across.\n")
}
for _, c := range collections {
if err = ecb.balanceEcVolumes(c); err != nil {