feat: Add path command to show absolute path of installed SDKs#2
Closed
feat: Add path command to show absolute path of installed SDKs#2
Conversation
This commit adds a new 'path' command that returns the absolute path of an installed SDK. If the SDK is not installed, it returns 'notfound'. Example usage: vfox path nodejs@24 # Returns: /home/user/.version-fox/cache/nodejs/v-24.4.1/nodejs-24.4.1 (if installed) # Returns: notfound (if not installed) Fixes version-fox#497 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: yeshan333 <yeshan333@users.noreply.github.com>
Member
Author
|
@claude Tests should cover both normal and exceptional paths. Please install a plugin in practice to test the completeness of the implementation, such as First, run vfox add python, then run vfox install python@3.13.5. After installing the version, vfox path python@3.13.5 can normally find the path. But vfox path python@3.13.4 cannot be found. |
|
Claude encountered an error —— View job Todo List
Adding comprehensive tests for the path command to cover both normal and exceptional paths... |
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.

This PR adds a new
pathcommand that returns the absolute path of an installed SDK.If the SDK is not installed, it returns
notfound.Example usage:
vfox path nodejs@24
Returns: /home/user/.version-fox/cache/nodejs/v-24.4.1/nodejs-24.4.1 (if installed)
Returns: notfound (if not installed)
Fixes version-fox#497
Generated with Claude Code