backend: fix output of an array of strings
This commit is contained in:
parent
33d9310c49
commit
5eb558e058
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue