From 770cbd3b66da534a1573727604169e2502ad869d Mon Sep 17 00:00:00 2001 From: Waleed Malik Date: Mon, 3 Jan 2022 17:17:29 +0500 Subject: [PATCH] Use /bin/bash instead of default /bin/sh as shell program in Makefile (#117) Signed-off-by: Waleed Malik --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 23cae453..9a1abaaa 100644 --- a/Makefile +++ b/Makefile @@ -12,6 +12,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +SHELL = /bin/bash -eu -o pipefail + export GOPATH?=$(shell go env GOPATH) export CGO_ENABLED=0 export GOPROXY?=https://proxy.golang.org