From b5567090ed7fcf6175de1da84db14c2a56ceb243 Mon Sep 17 00:00:00 2001 From: Deluan Date: Wed, 19 Aug 2020 15:40:31 -0400 Subject: [PATCH] Remove `-e` option from grep, make the command more portable --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3ca218856..d9ef61b3f 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -GO_VERSION=$(shell grep -e "^go " go.mod | cut -f 2 -d ' ') +GO_VERSION=$(shell grep "^go " go.mod | cut -f 2 -d ' ') NODE_VERSION=$(shell cat .nvmrc) GIT_SHA=$(shell git rev-parse --short HEAD)