Skip to content
This repository was archived by the owner on Oct 4, 2023. It is now read-only.

Add support for Ubuntu 21.04, 20.10 #78

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 desktopify
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,8 @@ fi

# Check if we're running 20.04
CODENAME=$(lsb_release -cs)
if [ "${CODENAME}" != "focal" ]; then
echo "[!] This script is only intended to run on Ubuntu 20.04."
if [ "${CODENAME}" != "focal" || "groovy" || "hirsute" ]; then
echo "[!] This script is only intended to run on Ubuntu 20.04, 20.10 or 21.04."
exit 1
fi

Expand Down