Skip to content

Commit

Permalink
remove .exe file ext from bsd releases
Browse files Browse the repository at this point in the history
  • Loading branch information
moloch-- committed May 7, 2024
1 parent 6f17c6a commit 79b84b2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ release:

CGO_ENABLED=$(CGO_ENABLED) GOOS=freebsd GOARCH=amd64 $(GO) build -o ./release/armory-server_freebsd-amd64 -trimpath -ldflags $(LDFLAGS) .
CGO_ENABLED=$(CGO_ENABLED) GOOS=freebsd GOARCH=arm64 $(GO) build -o ./release/armory-server_freebsd-arm64 -trimpath -ldflags $(LDFLAGS) .
CGO_ENABLED=$(CGO_ENABLED) GOOS=openbsd GOARCH=amd64 $(GO) build -o ./release/armory-server_openbsd-amd64.exe -trimpath -ldflags $(LDFLAGS) .
CGO_ENABLED=$(CGO_ENABLED) GOOS=openbsd GOARCH=arm64 $(GO) build -o ./release/armory-server_openbsd-arm64.exe -trimpath -ldflags $(LDFLAGS) .
CGO_ENABLED=$(CGO_ENABLED) GOOS=netbsd GOARCH=amd64 $(GO) build -o ./release/armory-server_netbsd-amd64.exe -trimpath -ldflags $(LDFLAGS) .
CGO_ENABLED=$(CGO_ENABLED) GOOS=netbsd GOARCH=arm64 $(GO) build -o ./release/armory-server_netbsd-arm64.exe -trimpath -ldflags $(LDFLAGS) .
CGO_ENABLED=$(CGO_ENABLED) GOOS=openbsd GOARCH=amd64 $(GO) build -o ./release/armory-server_openbsd-amd64 -trimpath -ldflags $(LDFLAGS) .
CGO_ENABLED=$(CGO_ENABLED) GOOS=openbsd GOARCH=arm64 $(GO) build -o ./release/armory-server_openbsd-arm64 -trimpath -ldflags $(LDFLAGS) .
CGO_ENABLED=$(CGO_ENABLED) GOOS=netbsd GOARCH=amd64 $(GO) build -o ./release/armory-server_netbsd-amd64 -trimpath -ldflags $(LDFLAGS) .
CGO_ENABLED=$(CGO_ENABLED) GOOS=netbsd GOARCH=arm64 $(GO) build -o ./release/armory-server_netbsd-arm64 -trimpath -ldflags $(LDFLAGS) .

clean:
rm -f ./armory-server
Expand Down

0 comments on commit 79b84b2

Please sign in to comment.