Skip to content

Commit

Permalink
Update NonSteamLaunchers.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
moraroy authored Mar 8, 2024
1 parent 10b028b commit b4d26c4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion NonSteamLaunchers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit b4d26c4

Please sign in to comment.