mirror of https://github.com/docker/cli.git
15 lines
283 B
Go
15 lines
283 B
Go
|
// +build !linux,!windows
|
||
|
|
||
|
package fsutil
|
||
|
|
||
|
import (
|
||
|
"runtime"
|
||
|
|
||
|
"github.com/pkg/errors"
|
||
|
"golang.org/x/net/context"
|
||
|
)
|
||
|
|
||
|
func Receive(ctx context.Context, conn Stream, dest string, notifyHashed ChangeFunc) error {
|
||
|
return errors.Errorf("receive is unsupported in %s", runtime.GOOS)
|
||
|
}
|