Skip to content

Commit fc5379f

Browse files
committed
static: windows: fix "docker-proxy.exe" being copied as "dockerd.exe"
This was introduced in 09541b5, which fixed the source-location of the docker-proxy binary, but accidentally used "dockerd.exe" as target. Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent a256741 commit fc5379f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

static/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ cross-win: cross-win-engine cross-win-plugins
6363
mkdir -p build/win/amd64/docker
6464
cp $(CLI_DIR)/build/docker-windows-amd64.exe build/win/amd64/docker/docker.exe
6565
cp $(ENGINE_DIR)/bundles/cross/windows/amd64-daemon/dockerd-$(GEN_STATIC_VER).exe build/win/amd64/docker/dockerd.exe
66-
cp $(ENGINE_DIR)/bundles/cross/windows/amd64-daemon/docker-proxy-$(GEN_STATIC_VER).exe build/win/amd64/docker/dockerd.exe
66+
cp $(ENGINE_DIR)/bundles/cross/windows/amd64-daemon/docker-proxy-$(GEN_STATIC_VER).exe build/win/amd64/docker/docker-proxy.exe
6767
docker run --rm -v $(CURDIR)/build/win/amd64:/v -w /v alpine sh -c 'apk update&&apk add zip&&zip -r docker-$(GEN_STATIC_VER).zip docker'
6868
$(CHOWN) -R $(shell id -u):$(shell id -g) build
6969

0 commit comments

Comments
 (0)