From b4d26c4fadf3ec602ac532877386f7d0583efe00 Mon Sep 17 00:00:00 2001 From: Roy <88516395+moraroy@users.noreply.github.com> Date: Fri, 8 Mar 2024 05:15:29 -0800 Subject: [PATCH] Update NonSteamLaunchers.sh --- NonSteamLaunchers.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/NonSteamLaunchers.sh b/NonSteamLaunchers.sh index 4551473..d4ead3d 100755 --- a/NonSteamLaunchers.sh +++ b/NonSteamLaunchers.sh @@ -658,7 +658,10 @@ else # Check if the arg is not an empty string before adding it to the custom_websites array if [ -n "$website" ]; then - custom_websites+=("$website") + IFS=',' read -ra websites <<< "$website" + for site in "${websites[@]}"; do + custom_websites+=("$site") + done fi else selected_launchers+=("$arg")