Add OpenSUSE to Mono launch script

This commit is contained in:
James Groom 2023-11-19 11:15:38 +10:00 committed by GitHub
parent c7d65eb0ca
commit eca0ca41a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ libpath=""
if [ "$(command -v lsb_release)" ]; then
case "$(lsb_release -i | cut -c17- | tr -d "\n" | tr A-Z a-z)" in
"arch"|"artix"|"manjarolinux") libpath="/usr/lib";;
"fedora"|"gentoo") libpath="/usr/lib64";;
"fedora"|"gentoo"|"opensuse") libpath="/usr/lib64";;
"debian"|"linuxmint"|"pop"|"ubuntu") libpath="/usr/lib/x86_64-linux-gnu";;
esac
else