From 8b7bf017a605f3ef5f500a09db5296314f1df346 Mon Sep 17 00:00:00 2001 From: Etan Kissling Date: Tue, 14 Jun 2022 16:41:20 +0200 Subject: [PATCH] fix CI archive step (#3752) c20309ba394abb7ee57ad9a16efa02ff3edbb3b5 accidentally deleted a `"`. This is now re-added to avoid errors during artifact CI archiving step. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index bf27faca3..214d9b98a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -74,7 +74,7 @@ def runStages(nodeDir) { // archive testnet logs sh """#!/bin/bash for D in local_testnet0_data local_testnet1_data resttest0_data; do - [[ -d "\$D" ]] && tar czf "\${D}-\${NODE_NAME}.tar.gz "\${D}"/*.txt || true + [[ -d "\$D" ]] && tar czf "\${D}-\${NODE_NAME}.tar.gz" "\${D}"/*.txt || true done """ try {