Skip to content

Commit 26dd201

Browse files
committed
Cast network output to string
Fixes #176
1 parent 6ff728e commit 26dd201

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

upload/upload.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ func ssh(port string, files []string, commandline string, auth Auth, l Logger, S
430430

431431
// Execute commandline
432432
output, err := client.Exec(commandline)
433-
info(l, output)
433+
info(l, string(output))
434434
debug(l, "Execute commandline ", commandline, string(output), err)
435435
if err != nil {
436436
return errors.Wrapf(err, "Execute commandline")

0 commit comments

Comments
 (0)