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:
parent
0bfe7b10bb
commit
8b7bf017a6
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue