build: add build_scripts/env.py to the hashed files

It contains information that define the build environments, and as such, modifying it should result in a new release of the dev containers.
This commit is contained in:
Alexis Métaireau 2025-01-06 14:20:06 +01:00
parent e4003ee1a0
commit 3e6c9da4df
No known key found for this signature in database
GPG key ID: C65C7A89A8FFC56E

View file

@ -292,6 +292,7 @@ def get_build_dir_sources(distro, version):
sources = [ sources = [
git_root() / "pyproject.toml", git_root() / "pyproject.toml",
git_root() / "poetry.lock", git_root() / "poetry.lock",
git_root() / "dev_scripts" / "env.py",
git_root() / "dev_scripts" / "storage.conf", git_root() / "dev_scripts" / "storage.conf",
git_root() / "dev_scripts" / "containers.conf", git_root() / "dev_scripts" / "containers.conf",
] ]