1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-11 14:25:57 +03:00

fix fedora download links

I think I may have inadvertently changed whether the arch portion
was included in the filename for stable releases.

Allow for that in the regex.

Remove debian 9 which is no longer supported.

closes: https://github.com/wez/wezterm/issues/2382
This commit is contained in:
Wez Furlong 2022-08-09 09:05:29 -07:00
parent 7bf8ea8f6e
commit c496f1ce97
2 changed files with 2 additions and 3 deletions

View File

@ -4,8 +4,8 @@ import sys
import re
CATEGORIZE = {
r".centos(\d+).rpm$": "centos\\1_rpm",
r".fedora(\d+).rpm$": "fedora\\1_rpm",
r".centos(\d+)(:?\S+)?.rpm$": "centos\\1_rpm",
r".fedora(\d+)(:?\S+)?.rpm$": "fedora\\1_rpm",
r".el(\d+).x86_64.rpm$": "centos\\1_rpm",
r".fc(\d+).x86_64.rpm$": "fedora\\1_rpm",
r".opensuse_leap.rpm$": "opensuse_leap_rpm",

View File

@ -84,7 +84,6 @@ you can try the AppImage download which should work on most Linux systems.
|Ubuntu18 |[{{ ubuntu18_deb_stable_asset }}]({{ ubuntu18_deb_stable }}) |[{{ ubuntu18_deb_nightly_asset }}]({{ ubuntu18_deb_nightly }})|
|Ubuntu20 |[{{ ubuntu20_deb_stable_asset }}]({{ ubuntu20_deb_stable }}) |[{{ ubuntu20_deb_nightly_asset }}]({{ ubuntu20_deb_nightly }})|
|Ubuntu22 |[{{ ubuntu22_deb_stable_asset }}]({{ ubuntu22_deb_stable }}) |[{{ ubuntu22_deb_nightly_asset }}]({{ ubuntu22_deb_nightly }})|
|Debian9 |[{{ debian9_deb_stable_asset }}]({{ debian9_deb_stable }}) |*No longer supported*|
|Debian10 |[{{ debian10_deb_stable_asset }}]({{ debian10_deb_stable }}) |[{{ debian10_deb_nightly_asset }}]({{ debian10_deb_nightly }})|
|Debian11 |[{{ debian11_deb_stable_asset }}]({{ debian11_deb_stable }}) |[{{ debian11_deb_nightly_asset }}]({{ debian11_deb_nightly }})|