Fix quick install script not detecting Debian version correctly
This commit is contained in:
parent
974cefff66
commit
79bd3a378f
1 changed files with 1 additions and 1 deletions
|
|
@ -110,7 +110,7 @@ detect_os_version () {
|
|||
cat /etc/os-release | grep -e "^VERSION_ID\=*" | cut -f 2 -d '=' | sed -e 's/"//g'
|
||||
fi
|
||||
fi
|
||||
if [[ "${os}" == "Ubuntu" ]]; then
|
||||
if [[ "${os}" == "Ubuntu" ]] || [[ "${os}" == "Debian" ]]; then
|
||||
cat /etc/os-release | grep -e "^VERSION_ID\=*" | cut -f 2 -d '=' | sed -e 's/[".]//g'
|
||||
fi
|
||||
if [[ "${os}" == "SLES15" ]] || [[ "${os}" == "LEAP15" ]]; then
|
||||
|
|
|
|||
Loading…
Reference in a new issue