Skip to content

Commit

Permalink
Add support for Ubuntu 24.04
Browse files Browse the repository at this point in the history
Fixes bluesky-social#84

* Additionally update the readme.md to reflect Ubuntu 23.10

Signed-off-by: Jared Allard <[email protected]>
  • Loading branch information
jensenbox authored and jaredallard committed Jan 12, 2025
1 parent 99e94fc commit 4215931
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ function main {
elif [[ "${DISTRIB_CODENAME}" == "mantic" ]]; then
SUPPORTED_OS="true"
echo "* Detected supported distribution Ubuntu 23.10 LTS"
elif [[ "${DISTRIB_CODENAME}" == "noble" ]]; then
SUPPORTED_OS="true"
echo "* Detected supported distribution Ubuntu 24.04 LTS"
fi
elif [[ "${DISTRIB_ID}" == "debian" ]]; then
if [[ "${DISTRIB_CODENAME}" == "bullseye" ]]; then
Expand All @@ -108,7 +111,7 @@ function main {
fi

if [[ "${SUPPORTED_OS}" != "true" ]]; then
echo "Sorry, only Ubuntu 20.04, 22.04, Debian 11 and Debian 12 are supported by this installer. Exiting..."
echo "Sorry, only Ubuntu 20.04, 22.04, 23.10, 24.04, Debian 11 and Debian 12 are supported by this installer. Exiting..."
exit 1
fi

Expand Down

0 comments on commit 4215931

Please sign in to comment.