Skip to content

Commit ca8201d

Browse files
authored
fix(makefile): adjust shell quoting for cgo-enabled script (#711)
1 parent 566b215 commit ca8201d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

root/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ TAGS :=
2828
BINDIR := $(CURDIR)/bin
2929
BIN_NAME := $(APP)
3030
PKGDIR := github.com/$(ORG)/$(APP)
31-
CGO_ENABLED ?= $(shell "$(CURDIR)/scripts/shell-wrapper.sh cgo-enabled.sh")
31+
CGO_ENABLED ?= $(shell "$(CURDIR)/scripts/shell-wrapper.sh" cgo-enabled.sh)
3232
TOOL_DEPS := ${GO}
3333

3434
# formatters / misc

0 commit comments

Comments
 (0)