Restore `-s` in `uname` OS detection logic in `Makefile`
Signed-off-by: Laura Brehm <laurabrehm@hey.com>
This commit is contained in:
parent
8891d9e2b5
commit
0dc64723c9
2
Makefile
2
Makefile
|
|
@ -21,7 +21,7 @@ GO_BUILDTAGS ?= e2e,kube
|
||||||
ifeq ($(OS),Windows_NT)
|
ifeq ($(OS),Windows_NT)
|
||||||
DETECTED_OS = Windows
|
DETECTED_OS = Windows
|
||||||
else
|
else
|
||||||
DETECTED_OS = $(shell uname)
|
DETECTED_OS = $(shell uname -s)
|
||||||
endif
|
endif
|
||||||
ifeq ($(DETECTED_OS),Linux)
|
ifeq ($(DETECTED_OS),Linux)
|
||||||
MOBY_DOCKER=/usr/bin/docker
|
MOBY_DOCKER=/usr/bin/docker
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue