Skip to content
Snippets Groups Projects
Commit 8a6373a1 authored by Steffen Köhler's avatar Steffen Köhler
Browse files

Skip enable mod-authtoken in first loop.

parent bbd3beee
Branches
2 merge requests!6V2021 11,!5V2021 11
Pipeline #10792 passed with stages
in 3 minutes and 12 seconds
This commit is part of merge request !5. Comments created here will be created in the context of that merge request.
...@@ -313,7 +313,7 @@ install_modules() { ...@@ -313,7 +313,7 @@ install_modules() {
local module local module
for module in $@; do for module in $@; do
if [[ ${module} == mod-authtoken* ]] && [ passage -eq 0 ]; then echo "Will skip"; break; fi if [[ ${module} == mod-authtoken* ]] && [ ${passage} -eq 0 ]; then echo "Will skip"; break; fi
read -r -d '' part <<EOF read -r -d '' part <<EOF
{ {
"id": "${module}", "id": "${module}",
...@@ -350,7 +350,7 @@ EOF ...@@ -350,7 +350,7 @@ EOF
done done
echo "${result##*|} ("${result%|*}")" echo "${result##*|} ("${result%|*}")"
passage=1 let passage=1
return 12 return 12
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment