We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24bdecb commit b9588f8Copy full SHA for b9588f8
jenkins.sh
@@ -54,7 +54,9 @@ cleanup() {
54
shellcheck ./**/*.sh
55
56
# Find all jenkins.sh's and run them.
57
-find . -mindepth 2 -maxdepth 5 -name jenkins.sh -type f | while read -r path; do
+export SCRIPT_LIST
58
+SCRIPT_LIST="$(find . -mindepth 2 -maxdepth 5 -name jenkins.sh -type f)"
59
+for path in $SCRIPT_LIST; do
60
dir="${path%/jenkins.sh}"
61
# Need different app versions because flex can't deploy over an existing
62
# version. Use just the first letter of each subdir in version name
0 commit comments