chore: remove distributions dir (#1809)

# What does this PR do?

Followup on https://github.com/meta-llama/llama-stack/pull/1801. Move
the deps files to llama_stack/templates.

Signed-off-by: Sébastien Han <seb@redhat.com>
This commit is contained in:
Sébastien Han 2025-03-27 14:03:39 +01:00 committed by GitHub
parent 626313b4c8
commit e3578b1c1b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 2 additions and 2 deletions

View file

@ -117,7 +117,7 @@ def generate_dependencies_file(change_tracker: ChangedPathTracker):
if name:
distribution_deps[name] = deps
deps_file = REPO_ROOT / "distributions" / "dependencies.json"
deps_file = REPO_ROOT / "llama_stack" / "templates" / "dependencies.json"
change_tracker.add_paths(deps_file)
with open(deps_file, "w") as f:
f.write(json.dumps(distribution_deps, indent=2) + "\n")