From 551d84f2d55806bacc90a2ca246409f6f143472f Mon Sep 17 00:00:00 2001 From: Norbert Walkowiak Date: Tue, 18 Apr 2023 08:48:25 +0200 Subject: [PATCH] fix --- Jenkinsfile-dataset-stats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile-dataset-stats b/Jenkinsfile-dataset-stats index 7e5b924..b55c1ae 100644 --- a/Jenkinsfile-dataset-stats +++ b/Jenkinsfile-dataset-stats @@ -30,7 +30,7 @@ pipeline { } stage('Archive file') { steps { - sh "docker cp \$(docker ps -aq -f status=exited -f ancestor=nbrt10/ium:v1 | head -n 1):/app/output.txt ${env.WORKSPACE}" + sh "docker cp $$(docker ps -aq -f status=exited -f ancestor=nbrt10/ium:v1 | head -n 1):/app/output.txt ${env.WORKSPACE}" archiveArtifacts artifacts: 'output.txt', fingerprint: true } }