2
2
mirror of https://github.com/octoleo/restic.git synced 2024-09-26 21:49:01 +00:00
restic/vendor/github.com/pkg/sftp/server_stubs.go
2017-07-23 14:25:38 +02:00

13 lines
179 B
Go

// +build !cgo,!plan9 windows android
package sftp
import (
"os"
"path"
)
func runLs(dirname string, dirent os.FileInfo) string {
return path.Join(dirname, dirent.Name())
}