Skip to content

Commit 43b6df5

Browse files
authored
Added doble quotes on asterisks and updated some command outputs (#3727)
* Added doble quotes on asterisks and updated some command outputs * Fixed threads
1 parent 404f8ed commit 43b6df5

File tree

23 files changed

+213
-191
lines changed

23 files changed

+213
-191
lines changed

‎devops/devops_local_recipes_index.rst‎

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ And that’s all! Now you're set to list and use packages from your `conan-cente
8383
8484
$ conan list "zlib/*" -r=mycenter
8585
mycenter
86-
zlib
86+
zlib
8787
zlib/1.2.11
8888
zlib/1.2.12
8989
zlib/1.2.13
@@ -138,24 +138,24 @@ We can see now the binary package in our local cache:
138138

139139
.. code-block:: bash
140140
141-
$ conan list zlib:*
141+
$ conan list "zlib:*"
142142
Local Cache
143-
zlib
143+
zlib
144144
zlib/1.3
145145
revisions
146-
5c0f3a1a222eebb6bff34980bcd3e024 (2024-04-10 11:50:34 UTC)
147-
packages
148-
72c852c5f0ae27ca0b1741e5fd7c8b8be91a590a
149-
info
150-
settings
151-
arch: x86_64
152-
build_type: Release
153-
compiler: gcc
154-
compiler.version: 9
155-
os: Linux
156-
options
157-
fPIC: True
158-
shared: False
146+
5c0f3a1a222eebb6bff34980bcd3e024 (2024-04-10 11:50:34 UTC)
147+
packages
148+
72c852c5f0ae27ca0b1741e5fd7c8b8be91a590a
149+
info
150+
settings
151+
arch: x86_64
152+
build_type: Release
153+
compiler: gcc
154+
compiler.version: 9
155+
os: Linux
156+
options
157+
fPIC: True
158+
shared: False
159159
160160
Finally, upload the binary package to our Artifactory repository to make it available for
161161
our organization, users and CI jobs:
@@ -188,7 +188,7 @@ edit that file and remove all versions but the latest and then we `list` the rec
188188
189189
$ conan list "zlib/*" -r=mycenter
190190
mycenter
191-
zlib
191+
zlib
192192
zlib/1.3.1
193193
194194
When some of the recipes change, then note that the current Conan home already contains a

‎examples/commands/pkglists.rst‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ It is also possible to first ``conan list`` and create a list of things to remov
181181
.. code-block:: bash
182182
183183
# Removes everything from the cache
184-
$ conan list *#* --format=json > pkglist.json
184+
$ conan list "*#*" --format=json > pkglist.json
185185
$ conan remove --list=pkglist.json -c
186186
187187
Note that in this case, the default patterns are different in ``list`` and ``remove``, because of the destructive nature of ``conan remove``:
@@ -194,15 +194,15 @@ Then the pattern to remove everything will be different if we call directly ``co
194194
.. code-block:: bash
195195
196196
# Removes everything from the cache
197-
$ conan remove *
197+
$ conan remove "*"
198198
# OR via list, we need to explicitly include all revisions
199-
$ conan list *#* --format=json > pkglist.json
199+
$ conan list "*#*" --format=json > pkglist.json
200200
$ conan remove --list=pkglist.json -c
201201
202202
# Removes only the binaries from the cache (leave recipes)
203-
$ conan remove *:*
203+
$ conan remove "*:*"
204204
# OR via list, we need to explicitly include all revisions
205-
$ conan list *#*:* --format=json > pkglist.json
205+
$ conan list "*#*:*" --format=json > pkglist.json
206206
$ conan remove --list=pkglist.json -c
207207
208208

‎examples/config_files/settings/settings_user.rst‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ that it's working correctly:
105105
-------- Installing (downloading, building) binaries... --------
106106
pkg/1.0: Copying sources to build folder
107107
pkg/1.0: Building your package in /Users/myuser/.conan2/p/t/pkg929d53a5f06b1/b
108-
pkg/1.0: Aggregating env generators
108+
pkg/1.0: Generating aggregated env files
109109
pkg/1.0: Package 'a0d37d10fdb83a0414d7f4a1fb73da2c210211c6' built
110110
pkg/1.0: Build folder /Users/myuser/.conan2/p/t/pkg929d53a5f06b1/b
111111
pkg/1.0: Generated conaninfo.txt
@@ -145,7 +145,7 @@ that it's working correctly:
145145
-------- Installing (downloading, building) binaries... --------
146146
pkg/1.0: Copying sources to build folder
147147
pkg/1.0: Building your package in /Users/myuser/.conan2/p/t/pkg918904bbca9dc/b
148-
pkg/1.0: Aggregating env generators
148+
pkg/1.0: Generating aggregated env files
149149
pkg/1.0: Package '44a4588d3fe63ccc6e7480565d35be38d405718e' built
150150
pkg/1.0: Build folder /Users/myuser/.conan2/p/t/pkg918904bbca9dc/b
151151
pkg/1.0: Generated conaninfo.txt
@@ -186,7 +186,7 @@ that it's working correctly:
186186
-------- Installing (downloading, building) binaries... --------
187187
pkg/1.0: Copying sources to build folder
188188
pkg/1.0: Building your package in /Users/myuser/.conan2/p/t/pkgde9b63a6bed0a/b
189-
pkg/1.0: Aggregating env generators
189+
pkg/1.0: Generating aggregated env files
190190
pkg/1.0: Package '19cf3cb5842b18dc78e5b0c574c1e71e7b0e17fc' built
191191
pkg/1.0: Build folder /Users/myuser/.conan2/p/t/pkgde9b63a6bed0a/b
192192
pkg/1.0: Generated conaninfo.txt

‎examples/dev_flow/debug/debugging_visual.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ flag makes sure that we only remove the build files, as we will need our source
6363

6464
.. code-block:: bash
6565
66-
$ conan list zlib/1.2.11:*
66+
$ conan list "zlib/1.2.11:*"
6767
$ conan cache path --folder build zlib/1.2.11:17b26a16efb893750e4481f98a154db2934ead88
6868
$ conan cache clean zlib/1.2.11 --build
6969
$ conan cache path --folder build zlib/1.2.11:17b26a16efb893750e4481f98a154db2934ead88

‎examples/runners/docker/basic.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ If we now check the status of our conan and docker cache, we will see the new zl
453453
$ conan list "*:*"
454454
Found 1 pkg/version recipes matching * in local cache
455455
Local Cache
456-
zlib
456+
zlib
457457
zlib/1.3.1
458458
revisions
459459
e20364c96c45455608a72543f3a53133 (2024-04-29 17:18:07 UTC)

‎examples/runners/docker/configfile_build_args.rst‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ If we now check the status of our Conan and docker cache, we will see the zlib p
151151
$ conan list "*:*"
152152
Found 1 pkg/version recipes matching * in local cache
153153
Local Cache
154-
zlib
154+
zlib
155155
zlib/1.3.1
156156
revisions
157157
e20364c96c45455608a72543f3a53133 (2024-04-29 17:18:07 UTC)
@@ -189,4 +189,4 @@ If we run the ``conan create`` command again we will see how Conan reuses the pr
189189
* Starting the docker container *
190190
*********************************
191191
192-
...
192+
...

‎examples/tools/autotools/create_your_first_package.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ We can now validate that the recipe and the package binary are in the cache:
121121

122122
.. code-block:: bash
123123
124-
$ conan list hello/1.0:*
124+
$ conan list "hello/1.0:*"
125125
Local Cache:
126126
hello
127127
hello/1.0

‎examples/tools/autotools/create_your_first_package_windows.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ We can now validate that the recipe and the package binary are in the cache:
7979

8080
.. code-block:: bash
8181
82-
$ conan list mypkg:*
82+
$ conan list "mypkg:*"
8383
Found 1 pkg/version recipes matching mypkg in local cache
8484
Local Cache
8585
mypkg

‎examples/tools/meson/create_your_first_package.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ We can now validate that the recipe and the package binary are in the cache:
136136

137137
.. code-block:: bash
138138
139-
$ conan list hello/1.0:*
139+
$ conan list "hello/1.0:*"
140140
Local Cache:
141141
hello
142142
hello/1.0

‎knowledge/faq.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ that you get an error like the following one:
3535
shared=False
3636
3737
ERROR: Missing prebuilt package for 'zlib/1.2.11'. You can try:
38-
- List all available packages using 'conan list {ref}:* -r=remote'
38+
- List all available packages using 'conan list "{ref}:*" -r=remote'
3939
- Explain missing binaries: replace 'conan install ...' with 'conan graph explain ...'
4040
- Try to build locally from sources using the '--build=zlib/1.2.11' argument
4141

0 commit comments

Comments
 (0)