diff options
author | 2017-05-27 00:16:57 -0400 | |
---|---|---|
committer | 2017-05-27 00:16:57 -0400 | |
commit | d348bda03061ff24569cd609d52493fdf7fc7f9e (patch) | |
tree | b3fe5b802f41bd10ba98e74a7e5b4d2890558294 | |
parent | 504fb4bc7d3d26f7442230a55a4d4410fe94b415 (diff) |
Bugfix: wrong results path
JIRA: DOVETAIL-438
Change-Id: I0fc2ec30c111ec870e5e03a008730b8e1f5c6304
Signed-off-by: xudan <xudan16@huawei.com>
-rwxr-xr-x | jjb/dovetail/dovetail-run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/dovetail/dovetail-run.sh b/jjb/dovetail/dovetail-run.sh index a30aa5346..5a81c54af 100755 --- a/jjb/dovetail/dovetail-run.sh +++ b/jjb/dovetail/dovetail-run.sh @@ -136,7 +136,7 @@ docker exec $container_id ${list_cmd} echo "Container exec command: ${run_cmd}" docker exec $container_id ${run_cmd} -sudo cp -r ${DOVETAIL_CONFIG}/results ./ +sudo cp -r ${DOVETAIL_HOME}/results ./ # To make sure the file owner is the current user, for the copied results files in the above line # if not, there will be error when next time to wipe workspace # CURRENT_USER=${SUDO_USER:-$USER} |