mirror of
https://github.com/moraroy/NonSteamLaunchers-On-Steam-Deck.git
synced 2024-11-20 08:09:18 +01:00
removed breaks
This commit is contained in:
parent
a9e4fa19c9
commit
92b42c3a98
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/env bash
|
||||
⁸#!/usr/bin/env bash
|
||||
|
||||
set -x # activate debugging (execution shown)
|
||||
set -o pipefail # capture error from pipes
|
||||
@ -54,16 +54,16 @@ check_for_updates() {
|
||||
args=("$@")
|
||||
deckyplugin=false
|
||||
installchrome=false
|
||||
|
||||
for arg in "${args[@]}"; do
|
||||
if [ "$arg" = "DeckyPlugin" ]; then
|
||||
deckyplugin=true
|
||||
break
|
||||
if [ "$arg" = "Chrome" ]; then
|
||||
installchrome=true
|
||||
break
|
||||
fi
|
||||
if [ "$arg" = "DeckyPlugin" ]; then
|
||||
deckyplugin=true
|
||||
elif [ "$arg" = "Chrome" ]; then
|
||||
installchrome=true
|
||||
fi
|
||||
done
|
||||
|
||||
|
||||
if [ "${deckyplugin}" = false ]; then
|
||||
#Download Modules
|
||||
# Define the repository and the folders to clone
|
||||
|
Loading…
Reference in New Issue
Block a user