mirror of
https://github.com/the-sane/lug-helper.git
synced 2024-12-29 07:14:19 +00:00
lutris -v doesn't work if it's running
This commit is contained in:
parent
2dd9b51ab1
commit
b399ca7fab
@ -813,7 +813,16 @@ lutris_detect() {
|
|||||||
lutris_check() {
|
lutris_check() {
|
||||||
lutris_detect
|
lutris_detect
|
||||||
|
|
||||||
if [ "$lutris_installed" = "true" ]; then
|
if [ "$lutris_installed" = "false" ]; then
|
||||||
|
preflight_fail+=("Lutris does not appear to be installed.\nFor manual installations, this may be ignored.")
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$(pgrep -f lutris)" ]; then
|
||||||
|
preflight_fail+=("Unable to detect Lutris version info while it is running.\nVersion $lutris_required or newer is required.")
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
# Check the native lutris version number
|
# Check the native lutris version number
|
||||||
if [ "$lutris_native" = "true" ]; then
|
if [ "$lutris_native" = "true" ]; then
|
||||||
lutris_current="$(lutris -v)"
|
lutris_current="$(lutris -v)"
|
||||||
@ -835,11 +844,6 @@ lutris_check() {
|
|||||||
preflight_pass+=("Flatpak Lutris is installed and up to date.")
|
preflight_pass+=("Flatpak Lutris is installed and up to date.")
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
else
|
|
||||||
preflight_fail+=("Lutris does not appear to be installed.\nFor manual installations, this may be ignored.")
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Check the installed winetricks version
|
# Check the installed winetricks version
|
||||||
|
Loading…
Reference in New Issue
Block a user