From 0dc64723c9202a1e1f930f300f483edd77765996 Mon Sep 17 00:00:00 2001 From: Laura Brehm Date: Wed, 21 Sep 2022 10:19:00 -0400 Subject: [PATCH] Restore `-s` in `uname` OS detection logic in `Makefile` Signed-off-by: Laura Brehm --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4c49ca3d3eb..1e53b14c873 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ GO_BUILDTAGS ?= e2e,kube ifeq ($(OS),Windows_NT) DETECTED_OS = Windows else - DETECTED_OS = $(shell uname) + DETECTED_OS = $(shell uname -s) endif ifeq ($(DETECTED_OS),Linux) MOBY_DOCKER=/usr/bin/docker