From 6db1bee4c337b209f6c580428653fd49e5621fa1 Mon Sep 17 00:00:00 2001 From: Markos Chandras Date: Tue, 16 Oct 2018 09:28:56 +0100 Subject: [PATCH] scripts: collect-test-info: Fix cp command when collecting VM logs Fixes: 431b76892936 ("scripts: Fix shell expansion when collecting VM logs") Change-Id: I4edf4eeb9118df8c2bd219d23bde85a74e1375c5 --- scripts/collect-test-info.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/collect-test-info.sh b/scripts/collect-test-info.sh index 2dda41396..d2af7edb4 100755 --- a/scripts/collect-test-info.sh +++ b/scripts/collect-test-info.sh @@ -14,7 +14,7 @@ echo "Making logs directory and collecting logs." [ -d ${LOG_LOCATION} ] || mkdir -p ${LOG_LOCATION} if [ -z "${TEST_VM_NODE_NAMES+x}" ]; then - sudo sh -c "cp /var/log/libvirt/baremetal_logs/testvm[[:digit:]]_console.log" ${LOG_LOCATION} + sudo sh -c "cp /var/log/libvirt/baremetal_logs/testvm[[:digit:]]_console.log ${LOG_LOCATION}" sudo chown $USER ${LOG_LOCATION}/testvm[[:digit:]]_console.log sudo chmod o+r ${LOG_LOCATION}/testvm[[:digit:]]_console.log else