Skip to content

Commit

Permalink
fix: correctly support bookworm and noble for veracrypt
Browse files Browse the repository at this point in the history
  • Loading branch information
philclifford committed Sep 2, 2024
1 parent 64104de commit cec12a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions 01-main/packages/veracrypt
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion 01-main/packages/veracrypt-console
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit cec12a2

Please # to comment.