You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2018/08/22 16:08:25 UTC

[geode] branch concourse-staging updated: Fixing mismatched quotes

This is an automated email from the ASF dual-hosted git repository.

upthewaterspout pushed a commit to branch concourse-staging
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/concourse-staging by this push:
     new 17e5778  Fixing mismatched quotes
17e5778 is described below

commit 17e577877b65127e9d554d9f464eabb1c8c27d3f
Author: Dan Smith <up...@apache.org>
AuthorDate: Wed Aug 22 09:07:13 2018 -0700

    Fixing mismatched quotes
---
 ci/scripts/archive_results.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ci/scripts/archive_results.sh b/ci/scripts/archive_results.sh
index 29fe455..a879ecc 100755
--- a/ci/scripts/archive_results.sh
+++ b/ci/scripts/archive_results.sh
@@ -101,7 +101,7 @@ pushd ${GEODE_BUILD}
   find . -type d -name "test-results" >> ${directories_file}
   (find . -type d -name "*Test" | grep "build/[^/]*Test$") >> ${directories_file}
   find . -name "*-progress*txt" >> ${directories_file}
-  find . -name '*.hprof" >> ${directories_file}
+  find . -name "*.hprof" >> ${directories_file}
   find . -type d -name "callstacks" >> ${directories_file}
   echo "Collecting the following artifacts..."
   cat ${directories_file}