Skip to content

Commit bc1cee8

Browse files
committed
chooser fix slash
1 parent 194052b commit bc1cee8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

choose_ci_set.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,5 +231,7 @@ def dedupe(run_list: list, slash: str) -> list:
231231
# Dedupe just in case
232232
run_list = dedupe(run_list, slash)
233233
run_list = [entry for entry in run_list if os.path.exists(entry.split("::")[0])]
234+
if slash == "\\":
235+
run_list = [entry.replace("/", slash) for entry in run_list]
234236
with open(OUTPUT_FILE, "w") as fh:
235237
fh.write("\n".join(run_list))

0 commit comments

Comments
 (0)