fix: Fix locations of distrubution runtime directories (#3336)

The defaults were mixed up

Signed-off-by: Derek Higgins <derekh@redhat.com>
This commit is contained in:
Derek Higgins 2025-09-05 13:09:36 +01:00 committed by GitHub
parent 0b00c68d59
commit 64b2977162
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 21 additions and 26 deletions

View file

@ -11,9 +11,7 @@ from ..starter.starter import get_distribution_template as get_starter_distribut
def get_distribution_template() -> DistributionTemplate:
template = get_starter_distribution_template()
name = "ci-tests"
template.name = name
template = get_starter_distribution_template(name="ci-tests")
template.description = "CI tests for Llama Stack"
return template