diff --git a/Readme.md b/Readme.md index 3d2390e7d1..c70f292600 100644 --- a/Readme.md +++ b/Readme.md @@ -7,7 +7,7 @@ FEX is very much work in progress, so expect things to change. ## Quick start guide -### For Ubuntu 20.04, 21.04, 21.10, 22.04 +### For Ubuntu 22.04, 24.04 and 24.10 Execute the following command in the terminal to install FEX through a PPA. `curl --silent https://raw.githubusercontent.com/FEX-Emu/FEX/main/Scripts/InstallFEX.py --output /tmp/InstallFEX.py && python3 /tmp/InstallFEX.py && rm /tmp/InstallFEX.py` diff --git a/Scripts/InstallFEX.py b/Scripts/InstallFEX.py index 4b62fb586d..64bb5f12ed 100755 --- a/Scripts/InstallFEX.py +++ b/Scripts/InstallFEX.py @@ -83,9 +83,8 @@ def IsSupportedDistro(): if Distro[0] == "ubuntu": # We only support what is available in ppa:fex-emu/fex return Distro[1] == "22.04" or \ - Distro[1] == "23.04" or \ - Distro[1] == "23.10" or \ - Distro[1] == "24.04" + Distro[1] == "24.04" or \ + Distro[1] == "24.10" return False