mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-27 09:38:37 +00:00
9c6c4559a7
Add SSH backend that runs commands via SSH. Close #848
11 lines
153 B
Go
11 lines
153 B
Go
// +build windows android
|
|
|
|
package sftp
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func lsLinksUIDGID(fi os.FileInfo) (numLinks uint64, uid, gid string) {
|
|
return 1, "0", "0"
|
|
}
|