Skip to content

Commit c488833

Browse files
address coderabbit comments
1 parent 638197c commit c488833

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ ifeq ($(OS),Windows_NT)
33
BINARY_NAME=lstk.exe
44
endif
55
BUILD_DIR=bin
6+
export CGO_ENABLED=0
67

78
.PHONY: build clean test test-integration lint mock-generate
89

910
$(BUILD_DIR)/$(BINARY_NAME):
10-
CGO_ENABLED=0 go build -o $(BUILD_DIR)/$(BINARY_NAME) .
11+
go build -o $(BUILD_DIR)/$(BINARY_NAME) .
1112

1213
build: clean $(BUILD_DIR)/$(BINARY_NAME)
1314

0 commit comments

Comments
 (0)