Skip to content

Commit eb4ec31

Browse files
committed
Put Ubuntu 22.04 Back
We got builds working for 22.04! Update the README and install script.
1 parent a017895 commit eb4ec31

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ If you prefer to download and install the package manually instead of running th
3636
1. Download the .deb package for your Ubuntu version. (Also available on our [Releases](https://github.com/mkasberg/ghostty-ubuntu/releases) page.)
3737
- **Ubuntu 24.10 Oracular:** [ghostty_1.1.2-0.ppa1_amd64_24.10.deb](https://github.com/mkasberg/ghostty-ubuntu/releases/download/1.1.2-0-ppa1/ghostty_1.1.2-0.ppa1_amd64_24.10.deb)
3838
- **Ubuntu 24.04 LTS Noble:** [ghostty_1.1.2-0.ppa1_amd64_24.04.deb](https://github.com/mkasberg/ghostty-ubuntu/releases/download/1.1.2-0-ppa1/ghostty_1.1.2-0.ppa1_amd64_24.04.deb)
39-
- **Ubuntu 22.04 LTS Jammy:** (1.1 delayed) [ghostty_1.0.1-0.ppa4_amd64_22.04.deb](https://github.com/mkasberg/ghostty-ubuntu/releases/download/1.0.1-0-ppa4/ghostty_1.0.1-0.ppa4_amd64_22.04.deb)
39+
- **Ubuntu 22.04 LTS Jammy:** [ghostty_1.1.2-0.ppa1_amd64_22.04.deb](https://github.com/mkasberg/ghostty-ubuntu/releases/download/1.1.2-0-ppa1/ghostty_1.1.2-0.ppa1_amd64_22.04.deb)
4040
- **Debian Bookworm:** [ghostty_1.1.2-0.ppa1_amd64_bookworm.deb](https://github.com/mkasberg/ghostty-ubuntu/releases/download/1.1.2-0-ppa1/ghostty_1.1.2-0.ppa1_amd64_bookworm.deb)
4141
- **Arm64 Ubuntu 24.10 Oracular:** [ghostty_1.1.2-0.ppa1_arm64_24.10.deb](https://github.com/mkasberg/ghostty-ubuntu/releases/download/1.1.2-0-ppa1/ghostty_1.1.2-0.ppa1_arm64_24.10.deb)
4242
- **Arm64 Ubuntu 24.04 LTS Noble:** [ghostty_1.1.2-0.ppa1_arm64_24.04.deb](https://github.com/mkasberg/ghostty-ubuntu/releases/download/1.1.2-0-ppa1/ghostty_1.1.2-0.ppa1_arm64_24.04.deb)
43-
- **Arm64 Ubuntu 22.04 LTS Jammy:** (1.1 delayed) [ghostty_1.0.1-0.ppa4_arm64_22.04.deb](https://github.com/mkasberg/ghostty-ubuntu/releases/download/1.0.1-0-ppa4/ghostty_1.0.1-0.ppa4_arm64_22.04.deb)
43+
- **Arm64 Ubuntu 22.04 LTS Jammy:** [ghostty_1.1.2-0.ppa1_arm64_22.04.deb](https://github.com/mkasberg/ghostty-ubuntu/releases/download/1.1.2-0-ppa1/ghostty_1.1.2-0.ppa1_arm64_22.04.deb)
4444
- **Arm64 Debian Bookworm:** [ghostty_1.1.2-0.ppa1_arm64_bookworm.deb](https://github.com/mkasberg/ghostty-ubuntu/releases/download/1.1.2-0-ppa1/ghostty_1.1.2-0.ppa1_arm64_bookworm.deb)
4545
2. Install the downloaded .deb package.
4646

install.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ARCH=$(dpkg --print-architecture)
2222

2323
case "$ID" in
2424
ubuntu|pop)
25-
if [[ "$VERSION_ID" =~ ^(24.10|24.04)$ ]]; then
25+
if [[ "$VERSION_ID" =~ ^(24.10|24.04|22.04)$ ]]; then
2626
SUFFIX="${ARCH}_${VERSION_ID}"
2727
else
2828
echo "This installer is not compatible with Ubuntu $VERSION_ID"
@@ -58,6 +58,7 @@ case "$ID" in
5858
declare -A SUPPORTED_VERSIONS=(
5959
["oracular"]="24.10"
6060
["noble"]="24.04"
61+
["jammy"]="22.04"
6162
)
6263

6364
if [[ -n "${SUPPORTED_VERSIONS[$UBUNTU_CODENAME]}" ]]; then

0 commit comments

Comments
 (0)