diff options
author | Tibor Frank <tifrank@cisco.com> | 2018-05-14 09:00:52 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2018-05-14 11:00:23 +0200 |
commit | a0c4696596ddbbd0914b1fdd04c2307922b1f7da (patch) | |
tree | 905b6e50b317dbf86211e71095963cd3b71a710b | |
parent | a93490df59883b561d5ebf99daf573ee589edc8f (diff) |
CSIT-1078: Optimize input data files download and processing
Change-Id: I3fa3c09bc485416e6d2be02fac296d83da16e0d7
Signed-off-by: Tibor Frank <tifrank@cisco.com>
-rw-r--r-- | resources/tools/presentation/input_data_files.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/tools/presentation/input_data_files.py b/resources/tools/presentation/input_data_files.py index 24dc3a57d8..9e0cfa6931 100644 --- a/resources/tools/presentation/input_data_files.py +++ b/resources/tools/presentation/input_data_files.py @@ -207,8 +207,8 @@ def download_and_unzip_data_file(spec, job, build): execute_command("gzip --keep {0}".format(new_name[:-3])) spec.set_input_file_name(job, build["build"], new_name[:-3]) - if spec.input["file-name"].endswith(".zip"): - if is_zipfile(file_name): + if new_name.endswith(".zip"): + if is_zipfile(new_name): return _unzip_file(spec, job, build) else: return False |