tools: fix already installed detection when running v install --once
without args
#19838
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
🤖 Generated by Copilot at 3990cbf
This pull request improves the vpm tool by adding a
--once
flag forv install
to skip cached modules and by fixing a bug that could miss some modules in the installation process. It affects the filescmd/tools/vpm/dependency_test.v
andcmd/tools/vpm/install.v
.🤖 Generated by Copilot at 3990cbf
--once
flag tov install
command to skip reinstalling modules that are already in the cache (link, link, link)--once
flag by asserting that no modules are installed and a message is printed when runningv install --once
again (link)num_to_install
variable to store the total number of modules to be installed, including dependencies, and compare it with the number of already installed modules ininstall
function ininstall.v
(link, link)