ab35df454d
Removed pre-go1.17 build-tags with go fix; go mod init go fix -mod=readonly ./... rm go.mod Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
12 lines
325 B
Go
12 lines
325 B
Go
//go:build !linux
|
|
|
|
package vfs // import "github.com/docker/docker/daemon/graphdriver/vfs"
|
|
|
|
import (
|
|
"github.com/docker/docker/pkg/chrootarchive"
|
|
"github.com/docker/docker/pkg/idtools"
|
|
)
|
|
|
|
func dirCopy(srcDir, dstDir string) error {
|
|
return chrootarchive.NewArchiver(idtools.IdentityMapping{}).CopyWithTar(srcDir, dstDir)
|
|
}
|