Skip to content

Commit

Permalink
- fix version prefix in aur package (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
d-rk committed Jun 9, 2021
1 parent 76b506f commit 234e44c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/aur/kafkactl/PKGBUILD.template
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ sha256sums=(
build() {
cd "${pkgname}-${pkgver}"
export CGO_LDFLAGS="$LDFLAGS"
go build -ldflags "-linkmode=external -X github.com/deviceinsight/kafkactl/cmd.Version=${pkgver}" -o ${pkgname} .
go build -ldflags "-linkmode=external -X github.com/deviceinsight/kafkactl/cmd.Version=v${pkgver}" -o ${pkgname} .
}

check() {
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed
- fix version prefix in aur package. kubernetes support not working without the prefix.

## 1.17.1 - 2021-05-17

### Fixed
Expand Down

0 comments on commit 234e44c

Please sign in to comment.