We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 502f4d1 commit 503fa9cCopy full SHA for 503fa9c
pkg/board/remote/adb/adb.go
@@ -120,7 +120,7 @@ func (a *ADBConnection) List(path string) ([]remote.FileInfo, error) {
120
if err := cmd.Start(); err != nil {
121
return nil, err
122
}
123
- defer cmd.Wait()
+ defer func() { _ = cmd.Wait() }()
124
125
r := bufio.NewReader(output)
126
_, err = r.ReadBytes('\n') // Skip the first line
@@ -168,7 +168,7 @@ func (a *ADBConnection) Stats(p string) (remote.FileInfo, error) {
168
169
return remote.FileInfo{}, err
170
171
172
173
174
line, err := r.ReadBytes('\n')
0 commit comments