From e9b1930cec9fdaba49f7f035c45577dbdd508385 Mon Sep 17 00:00:00 2001 From: cmitu <31816814+cmitu@users.noreply.github.com> Date: Fri, 31 Jul 2026 04:11:59 +0000 Subject: [PATCH] lr-mame: branch name should not be empty ... otherwise the update/install will pass an empty string to `git ls-remote` and the operation fails, leading to: - `git ls-remote` failing in the background (with an additional 'are you connected to the internet' message added). - the update dialog showing 'no install options available' and leaving only the removal or the package as an option. --- scriptmodules/libretrocores/lr-mame.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scriptmodules/libretrocores/lr-mame.sh b/scriptmodules/libretrocores/lr-mame.sh index 08b9ef26fa..a66d7b8fa7 100644 --- a/scriptmodules/libretrocores/lr-mame.sh +++ b/scriptmodules/libretrocores/lr-mame.sh @@ -20,6 +20,8 @@ rp_module_flags="!:\$__gcc_version:-lt:7" function _get_version_lr-mame() { if compareVersions "$(gcc -dumpfullversion)" lt 10.3.0; then echo "lrmame0264" + else + echo "master" fi } function _get_params_lr-mame() {