fix justfile: trimpaths -> trimpath [skip ci]

This commit is contained in:
surtur 2023-07-19 17:22:21 +02:00
parent 631013c2f3
commit 7256007b33
Signed by: wanderer
SSH Key Fingerprint: SHA256:MdCZyJ2sHLltrLBp0xQO0O1qTW9BT/xl5nXkDvhlMCI

@ -42,7 +42,7 @@ builddebug: build
# build the application without debugging information.
buildrelease:
go mod tidy
go build -v -trimpaths -ldflags="-s -w -X main.version=$(git rev-parse --short HEAD)" .
go build -v -trimpath -ldflags="-s -w -X main.version=$(git rev-parse --short HEAD)" .
# run the application.
run: