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[@]}"