Skip to content

Commit 1ac5dee

Browse files
committed
Missing call to shell for GOOS default
Signed-off-by: Anders F Björklund <[email protected]>
1 parent 8311c78 commit 1ac5dee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ GO ?= go
66
TAR ?= tar
77
PLANTUML ?= plantuml # may also be "java -jar plantuml.jar" if installed elsewhere
88

9-
GOOS ?= $(GO) env GOOS
9+
GOOS ?= $(shell $(GO) env GOOS)
1010
ifeq ($(GOOS),windows)
1111
exe = .exe
1212
endif

0 commit comments

Comments
 (0)