Skip to content

Commit 22b7295

Browse files
committed
Add os specific sed for FreeBSD.
1 parent 90057ca commit 22b7295

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ else
1616
ifeq ($(UNAME_S),Darwin)
1717
SED_INPLACE := sed -i ''
1818
endif
19+
ifeq ($(UNAME_S),FreeBSD)
20+
SED_INPLACE := sed -i ''
21+
endif
1922
endif
2023

2124
GOFILES := $(shell find . -name "*.go" -type f ! -path "./vendor/*" ! -path "*/bindata.go")

0 commit comments

Comments
 (0)