summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2023-02-12 11:36:22 -0700
committerLuke Shumaker <lukeshu@lukeshu.com>2023-02-12 16:17:52 -0700
commit99e09aa4eebd71ae1179af09e11f78ac36ccce8d (patch)
treee0399d8d012aef4467778a796c95c493002a47c6 /Makefile
parentc55326b0cb6994bb802cf6aac4a296acfb0e41ff (diff)
Makefile: Use -trimpath when building
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 07cb57d..8c78285 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@
# main
build:
- go build -o bin/ ./cmd/...
+ go build -trimpath -o bin/ ./cmd/...
.PHONY: build
check: