From a967fe7a945e27a27aaec95abeb999f9e9ae4cf6 Mon Sep 17 00:00:00 2001 From: the-sane <3657071+the-sane@users.noreply.github.com> Date: Tue, 26 Dec 2023 14:30:49 -0500 Subject: [PATCH] Fix grep filter --- lug-helper.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lug-helper.sh b/lug-helper.sh index 80838c2..1b2ac0a 100755 --- a/lug-helper.sh +++ b/lug-helper.sh @@ -1648,12 +1648,12 @@ download_select_install() { search_key="browser_download_url" # Optional: Only match urls containing a keyword match_url_keyword="" - # For GE runners, filter out game-specific builds by keyword + # Optional: Filter out game-specific builds by keyword # Format for grep extended regex (ie: "word1|word2|word3") if [ "$download_type" = "runner" ] && [ "$contributor_name" = "GloriousEggroll" ]; then filter_keywords="lol|diablo" else - filter_keywords="" + filter_keywords="oh hi there. this is just placeholder text. how are you today?" fi # Add a query string to the url query_string="?per_page=$max_download_items" @@ -1662,8 +1662,9 @@ download_select_install() { search_key="direct_asset_url" # Only match urls containing a keyword match_url_keyword="releases" - # Optional: Only match filenames containing a keyword - filter_keywords="" + # Optional: Filter out game-specific builds by keyword + # Format for grep extended regex (ie: "word1|word2|word3") + filter_keywords="oh hi there. this is just placeholder text. how are you today?" # Add a query string to the url query_string="?per_page=$max_download_items" else