Fix syntax error with zuul-tarball job

Currently zuul_work_dir is not defined. We can fix this by using
zuul.project.src_dir from the inventory file.

Change-Id: I61b65f73b9ba7ae14e3a0a5ce1dccaa325a77362
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2018-10-11 19:25:36 -04:00
parent 0bc848885e
commit 5abfcac335
1 changed files with 1 additions and 1 deletions

View File

@ -3,4 +3,4 @@
- name: Build tarball and wheel
command:
cmd: python setup.py sdist bdist_wheel
chdir: '{{ zuul_work_dir }}'
chdir: "{{ zuul.project.src_dir }}"