mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-21 03:07:46 +08:00

commit c41b006be1078aa358721b9a92e17eab9a51a958 updated the version of
docker/docker in go.mod, but possibly overlooked that there was still a
replace rule present. As a result the version was not actually updated.
This patch removes the replace rule, updating docker/docker to 9f28837c1d93
full diff: 4634ce647c...9f28837c1d
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
31 lines
488 B
Go
31 lines
488 B
Go
// +build !linux,!freebsd freebsd,!cgo
|
|
|
|
package mount
|
|
|
|
// These flags are unsupported.
|
|
const (
|
|
BIND = 0
|
|
DIRSYNC = 0
|
|
MANDLOCK = 0
|
|
NOATIME = 0
|
|
NODEV = 0
|
|
NODIRATIME = 0
|
|
NOEXEC = 0
|
|
NOSUID = 0
|
|
UNBINDABLE = 0
|
|
RUNBINDABLE = 0
|
|
PRIVATE = 0
|
|
RPRIVATE = 0
|
|
SHARED = 0
|
|
RSHARED = 0
|
|
SLAVE = 0
|
|
RSLAVE = 0
|
|
RBIND = 0
|
|
RELATIME = 0
|
|
REMOUNT = 0
|
|
STRICTATIME = 0
|
|
SYNCHRONOUS = 0
|
|
RDONLY = 0
|
|
mntDetach = 0
|
|
)
|