Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update install for ubuntu 18.04 and 20.04 #198

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions setup/quickbox-setup
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function _intro() {
echo
echo " ${title} Heads Up! ${normal} "
echo " ${message_title} QuickBox works with the following ${normal} "
echo " ${message_title} Ubuntu 15.10 | 16.04 / Debian 9 ${normal} "
echo " ${message_title} Ubuntu 15.10 | 16.04 | 18.04 | 20.04 / Debian 9 ${normal} "
echo
echo
echo "${green}Checking distribution ...${normal}"
Expand All @@ -62,7 +62,7 @@ function _intro() {
echo "$DISTRO: ${alert} It looks like you are running $DISTRO, which is not supported by QuickBox ${normal} "
echo 'Exiting...'
exit 1
elif [[ ! "$CODENAME" =~ ("xenial"|"wily"|"stretch") ]]; then
elif [[ ! "$CODENAME" =~ ("focal"|"bionix"|"xenial"|"wily"|"stretch") ]]; then
echo "Oh drats! You do not appear to be running a supported $DISTRO release."
echo "${bold}$SETNAME${normal}"
echo 'Exiting...'
Expand Down