File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -97,11 +97,14 @@ if $USE_DOCKER; then
9797 INNER+=" cd /root/mscclpp;"
9898 INNER+=" export LD_LIBRARY_PATH=/root/mscclpp/build/lib:\\\$ LD_LIBRARY_PATH;"
9999 INNER+=" CMD_B64='${CMD_B64} ';"
100- INNER+=" printf '%s' \\\"\\\$ CMD_B64\\\" | base64 -d | bash -euxo pipefail"
100+ INNER+=" TMP=\\\$ (mktemp);"
101+ INNER+=" printf '%s' \\\"\\\$ CMD_B64\\\" | base64 -d > \\\"\\\$ TMP\\\" ;"
102+ INNER+=" bash -euxo pipefail \\\"\\\$ TMP\\\" ;"
103+ INNER+=" rm -f \\\"\\\$ TMP\\\" "
101104
102105 parallel-ssh -i " ${PSSH_COMMON[@]} " \
103106 " sudo docker exec mscclpp-test bash -c \" ${INNER} \" "
104107else
105108 parallel-ssh -i " ${PSSH_COMMON[@]} " \
106- " set -euxo pipefail; CMD_B64='${CMD_B64} '; printf '%s' \"\$ CMD_B64\" | base64 -d | bash -euxo pipefail"
109+ " set -euxo pipefail; CMD_B64='${CMD_B64} '; TMP= \$ (mktemp); printf '%s' \"\$ CMD_B64\" | base64 -d > \"\$ TMP \" ; bash -euxo pipefail \"\$ TMP \" ; rm -f \"\$ TMP \" "
107110fi
You can’t perform that action at this time.
0 commit comments