From 086649e3756be44a0bb0b231a505876a43e4389e Mon Sep 17 00:00:00 2001 From: j-hc <25510067+j-hc@users.noreply.github.com> Date: Tue, 11 Jul 2023 12:12:43 +0300 Subject: [PATCH] Fix auto detection of microg patch --- utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.sh b/utils.sh index 32b4aa8..f9a6930 100755 --- a/utils.sh +++ b/utils.sh @@ -367,7 +367,7 @@ build_rv() { if [ "${args[merge_integrations]}" = true ]; then p_patcher_args+=("-m ${args[integ]}"); fi local microg_patch - microg_patch=$(jq -r ".[] | select(.compatiblePackages[].name==\"${pkg_name}\") | .name" "${args[ptjs]}" | grep -F microg || :) + microg_patch=$(jq -r ".[] | select(.compatiblePackages[].name==\"${pkg_name}\") | .name" "${args[ptjs]}" | grep -iF microg || :) if [ "$microg_patch" ]; then p_patcher_args=("${p_patcher_args[@]//-[ei] ${microg_patch}/}") fi