Skip to content

Commit 1fb7ff7

Browse files
committed
Makefile: fix tarball creation
Signed-off-by: Cristian Staretu <[email protected]>
1 parent 875b175 commit 1fb7ff7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ HOST_GOBIN := `if [ -n "$$(go env GOBIN)" ]; then go env GOBIN; else dirname $$(
1515
HOST_GOROOT := `go env GOROOT`
1616
NAME := netplugin
1717
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")
1919
TAR_EXT := tar.bz2
2020
export NETPLUGIN_CONTAINER_TAG := $(shell ./scripts/getGitVersion.sh)
2121
TAR_FILENAME := $(NAME)-$(VERSION).$(TAR_EXT)
@@ -381,7 +381,7 @@ binaries-from-container:
381381
c_id=$$(docker create --name netplugin-build \
382382
netplugin-build:$(NETPLUGIN_CONTAINER_TAG)) && \
383383
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 && \
385385
docker rm $${c_id}
386386

387387
##########################

0 commit comments

Comments
 (0)