2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-07 11:30:49 +00:00
restic/Godeps/_workspace/src/github.com/pkg/sftp/server_stubs.go
2016-02-13 19:11:35 +01: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())
}