mirror of
https://github.com/moby/buildkit.git
synced 2026-08-07 08:10:44 +00:00
16 lines
254 B
Go
16 lines
254 B
Go
//go:build !windows
|
|
|
|
package sshprovider
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func getFallbackAgentPath() (string, error) {
|
|
return "", errors.Errorf("make sure SSH_AUTH_SOCK is set")
|
|
}
|
|
|
|
func getWindowsPipeDialer(_ string) *socketDialer {
|
|
return nil
|
|
}
|