summaryrefslogtreecommitdiffstats
path: root/dovetail/run.py
diff options
context:
space:
mode:
authorxudan <xudan16@huawei.com>2017-06-07 02:23:21 -0400
committerxudan <xudan16@huawei.com>2017-06-07 21:04:54 -0400
commit1d13e0b2391542201551f97773fcb559bf661d8c (patch)
tree22812d3f95927e272b72ccffb7f83055d59b57fd /dovetail/run.py
parentdf9fb1edfad233bd2ee0fb55e80a0a9d644b7742 (diff)
Docker version misalignment and move some irrelevant messages
JIRA: DOVETAIL-437 JIRA: DOVETAIL-444 1. Docker client version and server version should be 1.12.3 or later. 2. If any of them is older than 1.12.3, there will be an ERROR message. 3. Delete the “rm -rf results” message. Change-Id: I0c10cf256ef139cac4d43f36108bf5f3f9da8398 Signed-off-by: xudan <xudan16@huawei.com>
Diffstat (limited to 'dovetail/run.py')
-rwxr-xr-xdovetail/run.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dovetail/run.py b/dovetail/run.py
index 84bd88f3..406b6d37 100755
--- a/dovetail/run.py
+++ b/dovetail/run.py
@@ -173,7 +173,7 @@ def clean_results_dir():
if os.path.exists(result_path):
if os.path.isdir(result_path):
cmd = 'sudo rm -rf %s/*' % (result_path)
- dt_utils.exec_cmd(cmd, exit_on_error=False)
+ dt_utils.exec_cmd(cmd, exit_on_error=False, exec_msg_on=False)
else:
print "result_dir in dovetail_config.yml is not a directory."
raise SystemExit(1)