Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarification in the help of conan cache path for package references #14199

Merged
merged 2 commits into from
Jul 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions conan/cli/commands/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ def cache_path(conan_api: ConanAPI, parser, subparser, *args):
"""
subparser.add_argument("reference", help="Recipe reference or Package reference")
subparser.add_argument("--folder", choices=['export_source', 'source', 'build', 'metadata'],
help="Path to show. The 'build'"
" requires a package reference. If not specified it shows 'exports'"
" path ")
help="Path to show. The 'build' requires a package reference. "
"If the argument is not passed, it shows 'exports' path for recipe references "
"and 'package' folder for package references.")

args = parser.parse_args(*args)
try:
Expand Down