From 971a7c98515a9d83661f5e423f7e8390f35dca59 Mon Sep 17 00:00:00 2001 From: MofassirArif Date: Thu, 21 Jan 2016 06:42:23 -0800 Subject: bug fix: result collection bug fix for docker images Change-Id: Ia4ea09b90c7a4f4e3699af456c6d66e85661cc0b Signed-off-by: MofassirArif --- func/fetchimg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'func/fetchimg.py') diff --git a/func/fetchimg.py b/func/fetchimg.py index 106dc7e8..1c621a3b 100644 --- a/func/fetchimg.py +++ b/func/fetchimg.py @@ -22,7 +22,7 @@ class FetchImg: def download(self): time.sleep(2) os.system( - 'cd ./Temp_Img && wget http://artifacts.opnfv.org/qtip/QTIP_CentOS.qcow2') + 'mkdir -p Temp_Img && wget http://artifacts.opnfv.org/qtip/QTIP_CentOS.qcow2 -P Temp_Img') filepath = './Temp_Img/QTIP_CentOS.qcow2' while not os.path.isfile(filepath): -- cgit 1.2.3-korg