You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2022/11/16 22:06:12 UTC

[hop] branch master updated: HOP-4550: escape literal

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

hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hop.git


The following commit(s) were added to refs/heads/master by this push:
     new 1085f1bd48 HOP-4550: escape literal
     new 67c3651f7f Merge pull request #1801 from hansva/master
1085f1bd48 is described below

commit 1085f1bd48bc459f0e0317765c9b11edf6c26695
Author: Hans Van Akelyen <ha...@gmail.com>
AuthorDate: Wed Nov 16 23:05:38 2022 +0100

    HOP-4550: escape literal
---
 Jenkinsfile.hop-web-selenium | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile.hop-web-selenium b/Jenkinsfile.hop-web-selenium
index 487b3c5740..e46c6da8ab 100644
--- a/Jenkinsfile.hop-web-selenium
+++ b/Jenkinsfile.hop-web-selenium
@@ -87,7 +87,7 @@ pipeline {
                 always {
                     sh "sleep 10"
                     sh "mkdir -p tmp/images"
-                    sh "$(cp integration-tests/hopweb/**/*.png tmp/images/)"
+                    sh "\$(cp integration-tests/hopweb/**/*.png tmp/images/)"
                     archiveArtifacts(artifacts: 'tmp/images/*.png')
                     junit(testResults: 'integration-tests/**/surefire-reports/*.xml', allowEmptyResults: true)
                 }