fix CI archive step (#3752)

c20309ba39 accidentally deleted a `"`.
This is now re-added to avoid errors during artifact CI archiving step.
This commit is contained in:
Etan Kissling 2022-06-14 16:41:20 +02:00 committed by GitHub
parent 0bfe7b10bb
commit 8b7bf017a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -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 {