mirror of
https://github.com/rclone/rclone.git
synced 2025-01-20 11:30: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:
|
case string:
|
||||||
fmt.Println(out)
|
fmt.Println(out)
|
||||||
case []string:
|
case []string:
|
||||||
for line := range x {
|
for _, line := range x {
|
||||||
fmt.Println(line)
|
fmt.Println(line)
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user