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

Correct conan build path arg description #13211

Merged
merged 1 commit into from
Feb 23, 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/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ def build(conan_api, parser, *args):
Install dependencies and call the build() method.
"""
parser.add_argument("path", nargs="?",
help="Path to a folder containing a recipe (conanfile.py "
"or conanfile.txt) or to a recipe file. e.g., "
"./my_project/conanfile.txt.")
help='Path to a python-based recipe file or a folder '
'containing a conanfile.py recipe. conanfile.txt '
'cannot be used with conan build.')
add_reference_args(parser)
# TODO: Missing --build-require argument and management
parser.add_argument("-of", "--output-folder",
Expand Down