From 78b251cbd7147f7550d3ac1ac36f7ccaa6c47161 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sat, 5 May 2018 16:00:01 +0200 Subject: all: fix too long lines Not sure why I have not seen warnings about these lines on another machine... --- vm/gce/gce.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'vm/gce') diff --git a/vm/gce/gce.go b/vm/gce/gce.go index 843072cff..036ffeb8b 100644 --- a/vm/gce/gce.go +++ b/vm/gce/gce.go @@ -198,7 +198,8 @@ func (inst *instance) Copy(hostSrc string) (string, error) { return vmDst, nil } -func (inst *instance) Run(timeout time.Duration, stop <-chan bool, command string) (<-chan []byte, <-chan error, error) { +func (inst *instance) Run(timeout time.Duration, stop <-chan bool, command string) ( + <-chan []byte, <-chan error, error) { conRpipe, conWpipe, err := osutil.LongPipe() if err != nil { return nil, nil, err -- cgit mrf-deployment