Skip to content

Commit

Permalink
fix make static
Browse files Browse the repository at this point in the history
  • Loading branch information
Phillezi committed Sep 12, 2024
1 parent 054283f commit c69290a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ all: build
build:
@echo "Building the application..."
@mkdir -p $(BUILD_DIR)
@CGOENABLED=0 go build -ldflags "-X main.buildTimestamp=$(BUILDTIMESTAMP)" -o $(BUILD_DIR)/$(BINARY_NAME) $(CMD_DIR)/*
@CGO_ENABLED=0 go build -ldflags "-X main.buildTimestamp=$(BUILDTIMESTAMP)" -o $(BUILD_DIR)/$(BINARY_NAME) $(CMD_DIR)/*
@echo "Build complete."

run: build
Expand Down

0 comments on commit c69290a

Please sign in to comment.