Skip to content

Commit 7fad64b

Browse files
authored
systems: added LMDE6 Support
Add __os_debian_ver="12" for Linux Mint Debian Edition 6
1 parent 0d94b2c commit 7fad64b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scriptmodules/system.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,8 +252,10 @@ function get_os_version() {
252252
error="You need Linux Mint Debian Edition 4 or newer"
253253
elif compareVersions "$__os_release" lt 5; then
254254
__os_debian_ver="10"
255-
else
255+
elif compareVersions "$__os_release" lt 6; then
256256
__os_debian_ver="11"
257+
else
258+
__os_debian_ver="12"
257259
fi
258260
fi
259261
;;

0 commit comments

Comments
 (0)