From 2514c0ff633e7ce175c541ae3c99187c36e5c210 Mon Sep 17 00:00:00 2001 From: Luis Salamanca <luis.salamanca@sdsc.ethz.ch> Date: Tue, 12 Feb 2019 20:48:20 +0000 Subject: [PATCH] More lfs and remove try except --- src/python/run_extract_origxml.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/python/run_extract_origxml.py b/src/python/run_extract_origxml.py index b2c92c35..b6d7f3bb 100644 --- a/src/python/run_extract_origxml.py +++ b/src/python/run_extract_origxml.py @@ -36,8 +36,12 @@ t1 = time.time() name_tar_file = input_file.split('/')[-1].split('.tar.gz')[0] files_proc, _ = utils_proc.get_list(year_tocomp, folder_database, name_tar_file) +print(input_file) comm = 'git lfs pull -I ' + input_file utils_proc.call_with_out(comm) +input_file_xml = '/'.join(input_file.split('/')[:-1]) + '/01_rawmeta.tar.gz' +comm = 'git lfs pull -I ' + input_file_xml +utils_proc.call_with_out(comm) list_proc = list() for infile in files_proc: -- GitLab