mirror of
https://github.com/rclone/rclone.git
synced 2025-01-20 06:02:45 +08:00
backend: fix output of an array of strings
This commit is contained in:
parent
33d9310c49
commit
5eb558e058
|
@ -102,7 +102,7 @@ Note to run these commands on a running backend then see
|
|||
case string:
|
||||
fmt.Println(out)
|
||||
case []string:
|
||||
for line := range x {
|
||||
for _, line := range x {
|
||||
fmt.Println(line)
|
||||
}
|
||||
default:
|
||||
|
|
Loading…
Reference in New Issue
Block a user