commit | 8d4db67e8739f2ab6eb81656120376e0a8a1810e | [log] [tgz] |
---|---|---|
author | Joey Armstrong <joey@opennetworking.org> | Tue Aug 29 17:25:05 2023 -0400 |
committer | Joey Armstrong <joey@opennetworking.org> | Tue Aug 29 17:25:05 2023 -0400 |
tree | ffb4e969e7ed5b0f79c7e13d6c4ae985ef7fb6e5 | |
parent | d1c4575407e95a6fb29200656fa7c968baf3f98d [diff] |
More quoting Change-Id: I0ec18fe56089180fbf1d1765b03b1211caec0dab
diff --git a/jjb/pipeline/voltha/master/bbsim-tests.groovy b/jjb/pipeline/voltha/master/bbsim-tests.groovy index d77d472..3e6aeb9 100644 --- a/jjb/pipeline/voltha/master/bbsim-tests.groovy +++ b/jjb/pipeline/voltha/master/bbsim-tests.groovy
@@ -428,7 +428,7 @@ echo declare -i count=0 - count=$(find . -name '*-combined.log' -print | wc -l) + count=\$(find . -name '*-combined.log' -print | wc -l) if [[ $count -gt 0 ]]; then echo '** Bundle combined log' gzip "${logs[@]}"
diff --git a/jjb/pipeline/voltha/voltha-2.12/bbsim-tests.groovy b/jjb/pipeline/voltha/voltha-2.12/bbsim-tests.groovy index 5372846..825edd3 100644 --- a/jjb/pipeline/voltha/voltha-2.12/bbsim-tests.groovy +++ b/jjb/pipeline/voltha/voltha-2.12/bbsim-tests.groovy
@@ -429,7 +429,7 @@ # readarray -t logs < <(find . -name '*-combined.log' -print) declare -i count=0 - count=$(find . -name '*-combined.log' -print | wc -l) + count=\$(find . -name '*-combined.log' -print | wc -l) if [[ $count -gt 0 ]]; then echo '** Bundle combined log' gzip "${logs[@]}"