Update NonSteamLaunchers.sh

This commit is contained in:
Roy 2024-03-08 05:15:29 -08:00 committed by GitHub
parent 10b028ba2b
commit b4d26c4fad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -658,7 +658,10 @@ else
# Check if the arg is not an empty string before adding it to the custom_websites array # Check if the arg is not an empty string before adding it to the custom_websites array
if [ -n "$website" ]; then if [ -n "$website" ]; then
custom_websites+=("$website") IFS=',' read -ra websites <<< "$website"
for site in "${websites[@]}"; do
custom_websites+=("$site")
done
fi fi
else else
selected_launchers+=("$arg") selected_launchers+=("$arg")