Fix typo in generate-zuul-manifest role

Change-Id: I763a7a6e95f08ba07b38ed6b1701fe16e2548471
This commit is contained in:
James E. Blair 2019-07-23 11:57:34 -07:00
parent a74ff55816
commit 02d9a29562
2 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@ display logs from a build.
**Role Variables**
.. zuul:rolevar:: generate_zuul_manifest_root
:default: {{ zuul.executor.log_dir }}
:default: {{ zuul.executor.log_root }}
The root directory to index.
@ -18,7 +18,7 @@ display logs from a build.
The name of the manifest file.
.. zuul:rolevar:: generate_zuul_manifest_output
:default: {{ zuul.executor.log_dir }}/{{ generate_zuul_manifest_filename }}
:default: {{ zuul.executor.log_root }}/{{ generate_zuul_manifest_filename }}
The path to the output manifest file.

View File

@ -1,4 +1,4 @@
generate_zuul_manifest_root: "{{ zuul.executor.log_dir }}"
generate_zuul_manifest_root: "{{ zuul.executor.log_root }}"
generate_zuul_manifest_filename: "zuul-manifest.json"
generate_zuul_manifest_output: "{{ zuul.executor.log_dir }}/{{ generate_zuul_manifest_filename }}"
generate_zuul_manifest_output: "{{ zuul.executor.log_root }}/{{ generate_zuul_manifest_filename }}"
generate_zuul_manifest_type: "zuul_manifest"