Skip to content

Commit

Permalink
add Ubuntu 24.10
Browse files Browse the repository at this point in the history
  • Loading branch information
ahoneybun committed Oct 22, 2024
1 parent 5d1fda7 commit cfc05b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
5 changes: 2 additions & 3 deletions Scripts/InstallFEX.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit cfc05b7

Please sign in to comment.