File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ HOST_GOBIN := `if [ -n "$$(go env GOBIN)" ]; then go env GOBIN; else dirname $$(
15
15
HOST_GOROOT := ` go env GOROOT `
16
16
NAME := netplugin
17
17
VERSION := $(shell scripts/getGitVersion.sh)
18
- TAR := $(shell command -v gtar || echo command -v tar || echo "Could not find tar")
18
+ TAR := $(shell command -v gtar || command -v tar || echo "Could not find tar")
19
19
TAR_EXT := tar.bz2
20
20
export NETPLUGIN_CONTAINER_TAG := $(shell ./scripts/getGitVersion.sh)
21
21
TAR_FILENAME := $(NAME ) -$(VERSION ) .$(TAR_EXT )
@@ -381,7 +381,7 @@ binaries-from-container:
381
381
c_id=$$(docker create --name netplugin-build \
382
382
netplugin-build:$(NETPLUGIN_CONTAINER_TAG ) ) && \
383
383
for f in netplugin netmaster netctl contivk8s netcontiv; do \
384
- docker cp -a $$ {c_id}:/go/bin/$$ f bin/$$ f; done && \
384
+ docker cp $$ {c_id}:/go/bin/$$ f bin/$$ f; done && \
385
385
docker rm $$ {c_id}
386
386
387
387
# #########################
You can’t perform that action at this time.
0 commit comments