removed breaks

This commit is contained in:
Roy 2024-03-14 10:57:29 -07:00 committed by GitHub
parent a9e4fa19c9
commit 92b42c3a98
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
elif [ "$arg" = "Chrome" ]; then
installchrome=true
break
fi
done
if [ "${deckyplugin}" = false ]; then
#Download Modules
# Define the repository and the folders to clone