Skip to content

Commit a2ab568

Browse files
committed
feat: adding suppor for debian 13
1 parent 4aeb689 commit a2ab568

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/linux/installer.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ TMP_DIR=$(mktemp -d)
124124
# - This function assumes that the /etc/os-release file follows the standard format for Linux OS
125125
# identification and that the distribution's identifiers are consistent with those specified in the script.
126126

127-
128127
check_os_version() {
129128
if [ -f /etc/os-release ]; then
130129
. /etc/os-release
@@ -142,7 +141,9 @@ check_os_version() {
142141
neon:24) # KDE Neon 24.x
143142
return 0
144143
;;
145-
144+
debian:13) # Debian 13.x (Trixie)
145+
return 0
146+
;;
146147
kali:2024|kali:20[2-9][0-9]) # Kali 2024.x or newer
147148
return 0
148149
;;

0 commit comments

Comments
 (0)