File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -168,6 +168,9 @@ def main():
168168 # loop over each version
169169 for version in sorted (os .listdir (user_path )):
170170 version_path = os .path .join (user_path , version )
171+ if dir == "results" :
172+ # only the "details" folder within "results" contains files relevant to Lichen
173+ version_path = os .path .join (version_path , "details" )
171174 if not os .path .isdir (version_path ):
172175 continue
173176 if version_mode == "active_version" and int (version ) != my_active_version :
@@ -214,6 +217,9 @@ def main():
214217 # loop over each version
215218 for other_version in sorted (os .listdir (other_user_path )):
216219 other_version_path = os .path .join (other_user_path , other_version )
220+ if dir == "results" :
221+ # only the "details" dir within "results" contains files relevant to Lichen
222+ other_version_path = os .path .join (other_version_path , "details" )
217223 if not os .path .isdir (other_version_path ):
218224 continue
219225
You can’t perform that action at this time.
0 commit comments