summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthewLi <matthew.lijun@huawei.com>2016-09-30 03:14:23 -0400
committerMatthewLi <matthew.lijun@huawei.com>2016-09-30 05:09:10 -0400
commit7c56f10bd78e37bbf5b5dce58ae7f4627565ba0c (patch)
treeb9f1ece049bfb1f31d6e56d83aa516a14d01fb5f
parent028c430fa193ef7cdb6d83b64d0b474ab4b6e6c3 (diff)
dovetail: chown for output results file
JIRA: DOVETAIL-14 Change-Id: I5953a8368503329aa668f7ae27ed2a816e562f54 Signed-off-by: MatthewLi <matthew.lijun@huawei.com>
-rwxr-xr-xjjb/dovetail/dovetail-run.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/jjb/dovetail/dovetail-run.sh b/jjb/dovetail/dovetail-run.sh
index 6453425ce..3f7a47bee 100755
--- a/jjb/dovetail/dovetail-run.sh
+++ b/jjb/dovetail/dovetail-run.sh
@@ -48,5 +48,8 @@ sudo docker run ${opts} ${envs} ${labconfig} ${sshkey} opnfv/dovetail:${DOCKER_T
echo "Dovetail: store results..."
sudo cp -r /home/opnfv/dovetail/results ./
+#To make sure the file owner is jenkins, for the copied results files in the above line
+#if not, there will be error when next time to wipe workspace
+sudo chown -R jenkins:jenkins ${WORKSPACE}/results
echo "Dovetail: done!"