diff options
Diffstat (limited to 'cmd/commandfuncs.go')
| -rw-r--r-- | cmd/commandfuncs.go | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/commandfuncs.go b/cmd/commandfuncs.go index 772fe01..28fa26e 100644 --- a/cmd/commandfuncs.go +++ b/cmd/commandfuncs.go @@ -96,7 +96,7 @@ func cmdStart(fl Flags) (int, error) {  	// started yet, and writing synchronously would result  	// in a deadlock  	go func() { -		stdinpipe.Write(expect) +		_, _ = stdinpipe.Write(expect)  		stdinpipe.Close()  	}()  | 
