Restore -s in uname OS detection logic in Makefile

Signed-off-by: Laura Brehm <laurabrehm@hey.com>
This commit is contained in:
Laura Brehm 2022-09-21 10:19:00 -04:00
parent 8891d9e2b5
commit 0dc64723c9
No known key found for this signature in database
GPG Key ID: 526E3FC49260D47A

View File

@ -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