Skip to content

Commit 098a9f9

Browse files
authored
Merge pull request #886 from iangelak/761-fix-doc
fix(docs): add quotes to git URL examples
2 parents a9ef9dd + d6efb57 commit 098a9f9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/how-tos/build-from-git-repo.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ you can do the following:
99

1010
.. code-block:: console
1111
12-
$ fromager bootstrap stevedore @ git+https://github.com/openstack/stevedore.git
12+
$ fromager bootstrap "stevedore @ git+https://github.com/openstack/stevedore.git"
1313
1414
This will clone the ``stevedore`` repository and build the package from the
1515
local copy.
@@ -18,7 +18,7 @@ You can also use the ``bootstrap-parallel`` command for faster builds:
1818

1919
.. code-block:: console
2020
21-
$ fromager bootstrap-parallel stevedore @ git+https://github.com/openstack/stevedore.git
21+
$ fromager bootstrap-parallel "stevedore @ git+https://github.com/openstack/stevedore.git"
2222
2323
This will perform the same operation but build wheels in parallel after the
2424
bootstrap phase completes.
@@ -31,7 +31,7 @@ the ``@`` syntax to specify the version.
3131

3232
.. code-block:: console
3333
34-
$ fromager bootstrap stevedore @ git+https://github.com/openstack/stevedore.git@5.2.0
34+
$ fromager bootstrap "stevedore @ git+https://github.com/openstack/stevedore.git@5.2.0"
3535
3636
This will clone the ``stevedore`` repository at the tag ``5.2.0`` and build the
3737
package from the local copy.
@@ -40,7 +40,7 @@ Or with parallel builds:
4040

4141
.. code-block:: console
4242
43-
$ fromager bootstrap-parallel stevedore @ git+https://github.com/openstack/stevedore.git@5.2.0
43+
$ fromager bootstrap-parallel "stevedore @ git+https://github.com/openstack/stevedore.git@5.2.0"
4444
4545
.. important::
4646

0 commit comments

Comments
 (0)