forked from TrueCloudLab/restic
12 lines
179 B
Go
12 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())
|
|
}
|