Rename build package to moby v2 module

Signed-off-by: Derek McGowan <derek@mcg.dev>
This commit is contained in:
Derek McGowan
2025-07-24 13:43:06 -07:00
parent 65867642d3
commit 1d571e619d
5 changed files with 5 additions and 5 deletions

View File

@@ -133,7 +133,7 @@ try {
Get-Content $outputFile | Out-Host
# Generate
go generate -v "github.com/docker/docker/cmd/dockerd"
go generate -v "github.com/moby/moby/v2/cmd/dockerd"
if ($LASTEXITCODE -ne 0) { Throw "Failed to generate version info" }
}
Catch [Exception] {

View File

@@ -28,7 +28,7 @@ copy_binaries() {
(
DOCKER_STATIC=1
GO_PACKAGE='github.com/docker/docker/cmd/dockerd'
GO_PACKAGE='github.com/moby/moby/v2/cmd/dockerd'
BINARY_NAME='dockerd'
source "${MAKEDIR}/.binary"
copy_binaries "$DEST"

View File

@@ -7,7 +7,7 @@ set -e
export CGO_ENABLED=0
DOCKER_STATIC=1
GO_PACKAGE='github.com/docker/docker/cmd/docker-proxy'
GO_PACKAGE='github.com/moby/moby/v2/cmd/docker-proxy'
BINARY_NAME='docker-proxy'
source "${MAKEDIR}/.binary"
)

View File

@@ -9,7 +9,7 @@ set -e
export BUILDFLAGS=("${BUILDFLAGS[@]/osusergo /}") # ditto for osusergo
export BUILDFLAGS=("${BUILDFLAGS[@]/static_build /}") # we're not building a "static" binary here
GO_PACKAGE='github.com/docker/docker/cmd/dockerd'
GO_PACKAGE='github.com/moby/moby/v2/cmd/dockerd'
BINARY_NAME='dockerd'
source "${MAKEDIR}/.binary"
)

View File

@@ -9,7 +9,7 @@ set -e
export BUILDFLAGS=("${BUILDFLAGS[@]/osusergo /}") # ditto for osusergo
export BUILDFLAGS=("${BUILDFLAGS[@]/static_build /}") # we're not building a "static" binary here
GO_PACKAGE='github.com/docker/docker/cmd/docker-proxy'
GO_PACKAGE='github.com/moby/moby/v2/cmd/docker-proxy'
BINARY_NAME='docker-proxy'
source "${MAKEDIR}/.binary"
)