You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The install script fails on Fedora Cinnamon because the characters "-cinnamon" appear in the distro name, which is not expected by the regex in the script.
This is fixed by changing the regex as follows:
238c238
< DIST_VERSION=$(echo $DISTRO_PKG | sed -r 's/.*fedora([[:alpha:]]+(-stream|-linux)?)?-release(-server|-workstation|-client|-common|-container|-kde|-cloud|-xfce)?-([0-9]+).*$/\4/')
---
> DIST_VERSION=$(echo $DISTRO_PKG | sed -r 's/.*fedora([[:alpha:]]+(-stream|-linux)?)?-release(-server|-workstation|-client|-common|-container|-kde|-cloud|-xfce|-cinnamon)?-([0-9]+).*$/\4/')
The text was updated successfully, but these errors were encountered:
The install script fails on Fedora Cinnamon because the characters "-cinnamon" appear in the distro name, which is not expected by the regex in the script.
This is fixed by changing the regex as follows:
The text was updated successfully, but these errors were encountered: