We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c0df6e commit 3a4e10fCopy full SHA for 3a4e10f
Makefile
@@ -6,8 +6,8 @@ BINARY=dlnafind dlnapass
6
all: $(BINARY)
7
8
$(BINARY):
9
- GOOS=windows GOARCH=amd64 go build -v -o ./$(OUTPUT_DIR)/$@_windows_x64.exe -ldflags="-s -w" ./cmd/$@
10
- GOOS=linux GOARCH=amd64 go build -v -o ./$(OUTPUT_DIR)/$@_linux_x64 -ldflags="-s -w" ./cmd/$@
+ GOOS=windows GOARCH=amd64 go build -v -o ./$(OUTPUT_DIR)/$@_windows_x64.exe -ldflags="-s -w" -trimpath ./cmd/$@
+ GOOS=linux GOARCH=amd64 go build -v -o ./$(OUTPUT_DIR)/$@_linux_x64 -ldflags="-s -w" -trimpath ./cmd/$@
11
12
clean:
13
rm -f $(OUTPUT_DIR)/*
0 commit comments