feat: Add path command to show absolute path of installed SDKs#3
Open
claude[bot] wants to merge 7 commits intomainfrom
Open
feat: Add path command to show absolute path of installed SDKs#3claude[bot] wants to merge 7 commits intomainfrom
claude[bot] wants to merge 7 commits intomainfrom
Conversation
This PR adds a new command that returns the absolute path of an installed SDK. If the SDK is not installed, it returns . 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) The implementation follows the same pattern as other commands in the codebase and includes proper error handling for various edge cases. Fixes version-fox#497 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: yeshan333 <yeshan333@users.noreply.github.com>
- Add comprehensive unit tests for the path command - Test argument parsing for various cases (no args, invalid format, empty SDK name/version) - Test the specific etcd@3.6.0 case mentioned in requirements - Verify path construction logic for installed SDKs - Test that the command properly handles SDKs that are not found - Add integration tests to verify command structure - Update path.go to include filepath.Join in the output path 🤖 Generated with [Claude Code] Co-Authored-By: Claude <noreply@anthropic.com>
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.
Summary
pathcommand that returns the absolute path of an installed SDKnotfoundTest plan
Example usage:
Fixes version-fox#497
Generated with Claude Code