File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -168,6 +168,9 @@ def main():
168
168
# loop over each version
169
169
for version in sorted (os .listdir (user_path )):
170
170
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" )
171
174
if not os .path .isdir (version_path ):
172
175
continue
173
176
if version_mode == "active_version" and int (version ) != my_active_version :
@@ -214,6 +217,9 @@ def main():
214
217
# loop over each version
215
218
for other_version in sorted (os .listdir (other_user_path )):
216
219
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" )
217
223
if not os .path .isdir (other_version_path ):
218
224
continue
219
225
You can’t perform that action at this time.
0 commit comments