From 8802fd3e9f6a2144d8ae5e8c6ff1194ae90c847a Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sun, 7 Sep 2025 13:51:11 +0300 Subject: [PATCH] Update package version to 4.47.1 --- pkg.info | 2 +- source.sh | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/pkg.info b/pkg.info index e1a98b2..3885865 100644 --- a/pkg.info +++ b/pkg.info @@ -1,6 +1,6 @@ name: yq description: A lightweight and portable command-line YAML processor -version: 4.45.4 +version: 4.47.1 url: https://mikefarah.gitbook.io/yq license: MIT architecture: any diff --git a/source.sh b/source.sh index 9d96436..d6e7ece 100644 --- a/source.sh +++ b/source.sh @@ -10,6 +10,9 @@ FILENAME="${DOWNLOAD##*/}" prepare() { wget "$DOWNLOAD" tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE" + + cd "$BPM_SOURCE" + GOFLAGS="-modcacherw" go mod vendor } # The build function is executed in the source directory