mirror of
https://github.com/rclone/rclone.git
synced 2025-08-17 09:01:33 +02:00
backend: fix output of an array of strings
This commit is contained in:
@ -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:
|
||||
|
Reference in New Issue
Block a user