mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
support debian 12 (#5205)
This commit is contained in:
parent
d4fad4f5c8
commit
ae046c778e
@ -35,3 +35,4 @@ dependencies:
|
||||
targets:
|
||||
ubuntu-20.04: true
|
||||
debian-11: true
|
||||
debian-12: true
|
||||
|
@ -74,7 +74,13 @@ root_command() {
|
||||
fi
|
||||
;;
|
||||
"Debian GNU/Linux" | "debian gnu/linux" | Raspbian)
|
||||
if [[ $VER != "11" ]]; then
|
||||
if [[ $VER == "12" ]]; then
|
||||
SUPPORTED=true
|
||||
elif [[ $VER == "11" ]]; then
|
||||
SUPPORTED=true
|
||||
elif [[ $VER == "10" ]]; then
|
||||
SUPPORTED=true
|
||||
else
|
||||
SUPPORTED=false
|
||||
fi
|
||||
DIST_OS=debian
|
||||
|
@ -64,7 +64,13 @@ case "$OS" in
|
||||
fi
|
||||
;;
|
||||
"Debian GNU/Linux" | "debian gnu/linux" | Raspbian)
|
||||
if [[ $VER != "11" ]]; then
|
||||
if [[ $VER == "12" ]]; then
|
||||
SUPPORTED=true
|
||||
elif [[ $VER == "11" ]]; then
|
||||
SUPPORTED=true
|
||||
elif [[ $VER == "10" ]]; then
|
||||
SUPPORTED=true
|
||||
else
|
||||
SUPPORTED=false
|
||||
fi
|
||||
DIST_OS=debian
|
||||
|
Loading…
Reference in New Issue
Block a user