Update install_deps.sh for Debian 12 and Fedora 39

Added support for newly introduced OS: Debian 12 and Fedora 39
This commit is contained in:
n0vakovic 2024-03-13 23:45:31 +01:00 committed by GitHub
parent 1f9a4a02b9
commit ef73942f61
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -88,6 +88,13 @@ case "$OS" in
run_script "debian-11.sh"
fi
;;
12)
if [ "$ARCH" = "arm" ]; then
run_script "debian-12-arm.sh"
else
run_script "debian-12.sh"
fi
;;
*) echo "Unsupported Debian version: $VER"; exit 1 ;;
esac
;;
@ -116,6 +123,7 @@ case "$OS" in
case "$VER" in
36) run_script "fedora-36.sh" ;;
38) run_script "fedora-38.sh" ;;
39) run_script "fedora-39.sh" ;;
*) echo "Unsupported Fedora version: $VER"; exit 1 ;;
esac
;;