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

Avoid using pkg* unified patterns in documentation, as they might introduce ambiguities. #3032

Merged
merged 5 commits into from
Feb 28, 2023
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions migrating_to_2.0/commands.rst
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ There are some examples:
.. code-block:: shell
:caption: **To:**

conan install . --build zlib*
conan install . --build zlib/*
conan install . --build zlib/1.2.11
conan install . --build zlib/1.*

Expand All @@ -133,7 +133,7 @@ There are some examples:
.. code-block:: shell
:caption: **To:**

conan install . -s zlib*:arch=x86 -o zlib*:shared=True
conan install . -s zlib/*:arch=x86 -o zlib/*:shared=True
conan install . -s zlib/1.2.11@user/channel:arch=x86 -o zlib/1.2.11:shared=True

Commands with have been removed
Expand Down
2 changes: 1 addition & 1 deletion migrating_to_2.0/recipes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ The definition of the ``default_options`` attribute has changed when referring t
from conan import ConanFile

class Pkg(Conanfile):
# "pkg/*:some_option" or ""pkg/1.0:some_option" or "pkg*:some_option" would be valid
# "pkg/*:some_option" or ""pkg/1.0:some_option" would be valid
default_options = {"pkg/*:some_option": "value"}


Expand Down