From cec12a24eb7f7d25a058b16242ba08f109311436 Mon Sep 17 00:00:00 2001 From: Phil Clifford Date: Mon, 2 Sep 2024 13:03:02 +0100 Subject: [PATCH] fix: correctly support bookworm and noble for veracrypt --- 01-main/packages/veracrypt | 4 ++-- 01-main/packages/veracrypt-console | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/01-main/packages/veracrypt b/01-main/packages/veracrypt index 956381a5a..a5d1e5ab8 100644 --- a/01-main/packages/veracrypt +++ b/01-main/packages/veracrypt @@ -1,7 +1,7 @@ DEFVER=2 ARCHS_SUPPORTED="amd64 arm64" -CODENAMES_SUPPORTED="buster bullseye focal jammy" -if [ "${ARCH}" == "amd64" ]; then +CODENAMES_SUPPORTED="buster bullseye focal jammy noble" +if [ "${HOST_ARCH}" == "amd64" ]; then CODENAMES_SUPPORTED="${CODENAMES_SUPPORTED} noble bookworm" fi get_website "https://www.veracrypt.fr/en/Downloads.html" diff --git a/01-main/packages/veracrypt-console b/01-main/packages/veracrypt-console index 7dab8e628..b22d7a030 100644 --- a/01-main/packages/veracrypt-console +++ b/01-main/packages/veracrypt-console @@ -1,7 +1,7 @@ DEFVER=1 ARCHS_SUPPORTED="amd64 arm64" CODENAMES_SUPPORTED="buster bullseye focal jammy" -if [ "${ARCH}" == "amd64" ]; then +if [ "${HOST_ARCH}" == "amd64" ]; then CODENAMES_SUPPORTED="${CODENAMES_SUPPORTED} noble bookworm" fi get_website "https://www.veracrypt.fr/en/Downloads.html"