Resolve command aliases from package definitions in anvil run#2
Merged
voidreamer merged 1 commit intomainfrom Apr 2, 2026
Merged
Resolve command aliases from package definitions in anvil run#2voidreamer merged 1 commit intomainfrom
anvil run#2voidreamer merged 1 commit intomainfrom
Conversation
When running `anvil run pkg -- CMD`, CMD is now looked up in the merged `commands:` map of all resolved packages. If a match is found the alias is expanded (with full env-var resolution) before execution, so `anvil run python-3.11 -- python -c "..."` works without a full path. Also display the Commands section in `anvil info` output.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
When running
anvil run pkg -- CMD, CMD is now looked up in the mergedcommands:map of all resolved packages. If a match is found the alias is expanded (with full env-var resolution) before execution, soanvil run python-3.11 -- python -c "..."works without a full path.Also display the Commands section in
anvil infooutput.