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 ebc418a commit c17d4b2Copy full SHA for c17d4b2
1 file changed
adb/files.go
@@ -15,7 +15,7 @@ func (a *ADB) FindFullCommand(path string) ([]FileInfo, error) {
15
var results []FileInfo
16
out, err := a.Shell("find", fmt.Sprintf("'%s'", path), "-type", "f", "-printf", "'%T@ %m %s %u %g %p\n'", "2>", "/dev/null")
17
18
- if err == nil {
+ if err != nil {
19
return results, err
20
}
21
0 commit comments