fix: Fix locations of distrubution runtime directories

The defaults were mixed up

Signed-off-by: Derek Higgins <derekh@redhat.com>
This commit is contained in:
Derek Higgins 2025-09-04 16:36:15 +01:00
parent 0b00c68d59
commit 1eaf25123f
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