Skip to content

Commit b9588f8

Browse files
author
Frank Natividad
committed
Fixing jenkins.sh script to run all end-2-end tests.
1 parent 24bdecb commit b9588f8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

jenkins.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ cleanup() {
5454
shellcheck ./**/*.sh
5555

5656
# Find all jenkins.sh's and run them.
57-
find . -mindepth 2 -maxdepth 5 -name jenkins.sh -type f | while read -r path; do
57+
export SCRIPT_LIST
58+
SCRIPT_LIST="$(find . -mindepth 2 -maxdepth 5 -name jenkins.sh -type f)"
59+
for path in $SCRIPT_LIST; do
5860
dir="${path%/jenkins.sh}"
5961
# Need different app versions because flex can't deploy over an existing
6062
# version. Use just the first letter of each subdir in version name

0 commit comments

Comments
 (0)