summaryrefslogtreecommitdiff
path: root/hacking
diff options
context:
space:
mode:
authorSam Doran <sdoran@redhat.com>2021-08-11 23:33:23 -0400
committerGitHub <noreply@github.com>2021-08-11 20:33:23 -0700
commit5af0420cab320af6ab8587c28f87434cdf1a4ea5 (patch)
tree278784a5dac37e8aede1d1bb886e8a949777cf55 /hacking
parent7450e87615b0d9b1503a0f966bd3327901decb75 (diff)
downloadansible-5af0420cab320af6ab8587c28f87434cdf1a4ea5.tar.gz
hacking - account for job names that contain separators (#75454)
Some job names contain '/' which causes the download job to fail. Example job name: `Post-job: Checkout ansible/ansible@refs/pull/75445/merge to ansible.log`
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)