fix: typo flag test in install.sh and deploy.sh

This commit is contained in:
Julien Oculi 2024-05-30 12:43:10 +02:00
parent 86f66ab8ac
commit 1215d25186
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
APPS=$@ APPS=$@
if [[ $# -eq 1 ]]; then if [[ $# -eq 1 ]]; then
if [[ $1 == "--all" $1 == "-a" ]]; then if [[ $1 == "--all" || $1 == "-a" ]]; then
APPS=$(ls -d */) APPS=$(ls -d */)
fi fi
fi fi

View file

@ -6,7 +6,7 @@ source ./_requirements.sh
APPS=$@ APPS=$@
if [[ $# -eq 1 ]]; then if [[ $# -eq 1 ]]; then
if [[ $1 == "--all" $1 == "-a" ]]; then if [[ $1 == "--all" || $1 == "-a" ]]; then
APPS=$(ls -d */) APPS=$(ls -d */)
fi fi
fi fi