You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Possible to use
o2dpg_release_validation.py rel-val -i @list.txt -j <file1> <file2> ...
where list.txt contains a list of files paths for the first batch.
Can be used independently for both -i and -j.
Extract filenames from what is listed in a given file
197
+
"""
198
+
collect_files= []
199
+
withopen(list_filename, "r") asf:
200
+
forlineinf:
201
+
line=line.strip()
202
+
ifnotline:
203
+
continue
204
+
collect_files.append(line)
205
+
returncollect_files
206
+
207
+
print("==> Process and compare 2 sets of files <==")
198
208
199
209
# flat ROOT files to extract to and read from during RelVal; make absolute paths so we don't confuse ourselves when running e.g. ROOT macros in different directories
0 commit comments