Don't emit yaml suffixes in run and post-run lines

Change-Id: I16374d866faae3899c2cf8c09791774c968f3c66
This commit is contained in:
Monty Taylor 2017-09-26 11:37:37 -05:00
parent 221a252f73
commit 0784850c62
No known key found for this signature in database
GPG Key ID: 7BAE94BC7141A594
1 changed files with 2 additions and 2 deletions

View File

@ -878,9 +878,9 @@ class Job:
output['parent'] = 'publish-openstack-artifacts'
elif has_draft:
output['success-url'] = 'html/'
output['run'] = os.path.join(self.job_path, 'run.yaml')
output['run'] = os.path.join(self.job_path, 'run')
if has_post:
output['post-run'] = os.path.join(self.job_path, 'post.yaml')
output['post-run'] = os.path.join(self.job_path, 'post')
if self.vars:
output['vars'] = self.vars.copy()