From e7495bb10b97f14c1cc7ce5ee162cf71d99376b1 Mon Sep 17 00:00:00 2001 From: juef Date: Mon, 28 Jul 2025 21:27:18 +0300 Subject: [PATCH] testing/dnscontrol: fix version info changes introduced by this commit: https://github.com/StackExchange/dnscontrol/commit/cd8892f9bbb515b3025c9d105cba710f49d6d540 --- testing/dnscontrol/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/dnscontrol/APKBUILD b/testing/dnscontrol/APKBUILD index fe7d0d80714..8300742fa7b 100644 --- a/testing/dnscontrol/APKBUILD +++ b/testing/dnscontrol/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Nicolas Lorin pkgname=dnscontrol pkgver=4.22.0 -pkgrel=0 +pkgrel=1 pkgdesc="Synchronize your DNS to multiple providers from a simple DSL" url="https://stackexchange.github.io/dnscontrol/" arch="all" @@ -18,7 +18,7 @@ export GOTMPDIR="${GOTMPDIR:-"$srcdir"}" export GOMODCACHE="${GOMODCACHE:-"$srcdir/go"}" build() { - go build -ldflags="-X main.version=$pkgver" + go build -ldflags="-X github.com/StackExchange/dnscontrol/v4/pkg/version.version=$pkgver" } check() {