forked from TrueCloudLab/certificates
Hide unnecessary error.
This commit is contained in:
parent
ef86bedb2c
commit
193d18ee21
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@
|
||||||
ifeq (, $(shell which docker))
|
ifeq (, $(shell which docker))
|
||||||
DOCKER_CLIENT_OS := linux
|
DOCKER_CLIENT_OS := linux
|
||||||
else
|
else
|
||||||
DOCKER_CLIENT_OS := $(strip $(shell docker version -f '{{.Client.Os}}'))
|
DOCKER_CLIENT_OS := $(strip $(shell docker version -f '{{.Client.Os}}' 2>/dev/null))
|
||||||
endif
|
endif
|
||||||
|
|
||||||
DOCKER_PLATFORMS = linux/amd64,linux/386,linux/arm,linux/arm64
|
DOCKER_PLATFORMS = linux/amd64,linux/386,linux/arm,linux/arm64
|
||||||
|
|
Loading…
Reference in a new issue