1
0
Fork 0
mirror of https://github.com/restic/restic.git synced 2025-02-02 20:46:57 +00:00
restic/vendor/github.com/pkg/sftp/server_stubs.go

13 lines
179 B
Go
Raw Normal View History

2017-07-23 12:24:45 +00:00
// +build !cgo,!plan9 windows android
package sftp
import (
"os"
"path"
)
func runLs(dirname string, dirent os.FileInfo) string {
return path.Join(dirname, dirent.Name())
}