summaryrefslogtreecommitdiff
path: root/hacking
diff options
context:
space:
mode:
Diffstat (limited to 'hacking')
-rwxr-xr-xhacking/azp/download.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/hacking/azp/download.py b/hacking/azp/download.py
index c573e0a7e1..117e9da5b7 100755
--- a/hacking/azp/download.py
+++ b/hacking/azp/download.py
@@ -214,6 +214,10 @@ def download_run(args):
parent_id = parent_of.get(p['id'], None)
path = " ".join(names)
+
+ # Some job names have the separator in them.
+ path = path.replace(os.sep, '_')
+
log_path = os.path.join(output_dir, '%s.log' % path)
if args.verbose:
print(log_path)