这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/helperFunctions/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def check_distribution(allow_unsupported=False):
debian_code_names = ['buster', 'stretch', 'bullseye', 'bookworm', 'kali-rolling']
focal_code_names = ['focal', 'ulyana', 'ulyssa', 'uma', 'una']
jammy_code_names = ['jammy', 'vanessa', 'vera', 'victoria', 'virginia']
noble_code_names = ['noble', 'wilma']
noble_code_names = ['noble', 'wilma', 'xia', 'zara']

codename = distro.codename().lower()
if codename in focal_code_names:
Expand Down
2 changes: 1 addition & 1 deletion src/install/pre_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ elif [ "${DISTRO}" = "Kali" ] || [ "${DISTRO}" = "Debian" ]; then
fi

CODENAME=$(lsb_release -cs)
if [ "${CODENAME}" = "wilma" ]; then
if [ "${CODENAME}" = "wilma" ] || [ "${CODENAME}" = "xia" ] || [ "${CODENAME}" = "zara" ]; then
CODENAME=noble
elif [ "${CODENAME}" = "vanessa" ] || [ "${CODENAME}" = "vera" ] || [ "${CODENAME}" = "victoria" ] || [ "${CODENAME}" = "virginia" ]; then
CODENAME=jammy
Expand Down