How to install dependencies when your project's dependencies.lock file gets updated?
Posted: Wed Oct 02, 2024 3:44 pm
So there are two commands that I know of that can affect the dep.lock file: and .
The issue is that these modify the dep.lock file, is there an equivalent to just?
This would be extremely useful to have (for example, as a git hook) for our developers when the dep.lock file gets updated in the repository.
Just curious if I missed something here, I think that the lock gets "just downloaded" on each, but it would be nice to be able to just trigger a download without a build.
Code: Select all
idf.py reconfigure
Code: Select all
idf.py update-dependencies
The issue is that these modify the dep.lock file, is there an equivalent to just
Code: Select all
idf.py install-dependencies
This would be extremely useful to have (for example, as a git hook) for our developers when the dep.lock file gets updated in the repository.
Just curious if I missed something here, I think that the lock gets "just downloaded" on each
Code: Select all
idf.py build