Skip to content

Commit 081748e

Browse files
authored
fix: wrong ldflags due to refactor (#340)
Fixes the ldflags that were broken by 1dff836
1 parent b9a4586 commit 081748e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.goreleaser.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ builds:
99
- amd64
1010
- arm64
1111
ldflags:
12-
- -X github.com/envelope-zero/backend/internal/router.version={{.Version}}
12+
- -X github.com/envelope-zero/backend/pkg/router.version={{.Version}}
1313

1414
archives:
1515
- replacements:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ coverage: test
2525
VERSION ?= $(shell git rev-parse HEAD)
2626
.PHONY: build
2727
build:
28-
go build -ldflags "-X github.com/envelope-zero/backend/internal/router.version=${VERSION}"
28+
go build -ldflags "-X github.com/envelope-zero/backend/pkg/router.version=${VERSION}"

0 commit comments

Comments
 (0)