From 2fdcff3ab02f142b7b344165652a5f55af976223 Mon Sep 17 00:00:00 2001 From: Phil Clifford Date: Mon, 16 Dec 2024 12:23:34 +0000 Subject: [PATCH] fix(hugo): latest release has no packages for reasons This removes the latest constraint as they have tagged a source-only version. Now that we trim our cache it may be better to take the cautious approach and stop getting latest tags altogether. --- 01-main/packages/hugo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01-main/packages/hugo b/01-main/packages/hugo index 4addc7607..1ad8ff3f2 100644 --- a/01-main/packages/hugo +++ b/01-main/packages/hugo @@ -1,6 +1,6 @@ DEFVER=1 ARCHS_SUPPORTED="amd64 arm64" -get_github_releases "gohugoio/hugo" "latest" +get_github_releases "gohugoio/hugo" if [ "${ACTION}" != "prettylist" ]; then URL=$(grep "browser_download_url.*${HOST_ARCH}\.deb\"" "${CACHE_FILE}" | grep -m 1 -v extended | cut -d'"' -f4) VERSION_PUBLISHED="$(echo "${URL}" | cut -d'/' -f8 | tr -d v)"