Skip to content

Commit

Permalink
chore(Makefile): rename ´build´ by ´build-win´ & build-linux by `bu…
Browse files Browse the repository at this point in the history
…ild`
  • Loading branch information
vareversat committed Dec 1, 2023
1 parent e8b2e1d commit 95faaa1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ all: deps test build

# Build the application
build:
$(GOCMD) build -o $(BINARY_NAME_WIN) -v
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 $(GOCMD) build -o $(BINARY_NAME_UNIX) -v

# Build for Linux
build-linux:
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 $(GOCMD) build -o $(BINARY_NAME_UNIX) -v
build-win:
$(GOCMD) build -o $(BINARY_NAME_WIN) -v

# Clean the build artifacts
clean:
Expand Down

0 comments on commit 95faaa1

Please sign in to comment.