Skip to content

Commit c0b9210

Browse files
authored
Upgrade golanci lint
1 parent 82f7f2e commit c0b9210

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/adbfs/adbfs.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ type AdbFSWriter struct {
3232
}
3333

3434
func (a AdbFSWriter) MkDirAll(p string) error {
35-
return adb.MkDirAll(path.Join(a.Base, p), a.AdbFS.Host)
35+
return adb.MkDirAll(path.Join(a.Base, p), a.Host)
3636
}
3737

3838
func (a AdbFSWriter) WriteFile(p string, data io.ReadCloser) error {
39-
return adb.CatIn(data, path.Join(a.Base, p), a.AdbFS.Host)
39+
return adb.CatIn(data, path.Join(a.Base, p), a.Host)
4040
}
4141

4242
func (a AdbFSWriter) RmFile(p string) error {
43-
return adb.Remove(path.Join(a.Base, p), a.AdbFS.Host)
43+
return adb.Remove(path.Join(a.Base, p), a.Host)
4444
}
4545

4646
type AdbFile struct {

0 commit comments

Comments
 (0)