Skip to content

Commit 5b4c925

Browse files
committedFeb 21, 2018
[FAB-8424] Fix fabric-samples checkout instruction
Fix fabric-samples instructions to cd into repository before checkout of tag. Change-Id: I273afb103ea2afe38342bad997d6e1fa8f47b725 Signed-off-by: David Enyeart <enyeart@us.ibm.com>
1 parent eeafa9f commit 5b4c925

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎docs/source/samples.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ execute the following commands:
2626
.. code:: bash
2727
2828
git clone -b master https://github.com/hyperledger/fabric-samples.git
29-
git checkout {TAG} 
3029
cd fabric-samples
30+
git checkout {TAG} 
3131
32-
.. note:: To ensure the samples are compatible with the version of Fabric binaries you download below,
32+
.. note:: To ensure the samples are compatible with the version of Fabric binaries you download below,
3333
checkout the samples ``{TAG}`` that matches your Fabric version, for example, v1.1.0-alpha.
3434
To see a list of all fabric-samples tags, use command "git tag".
3535

@@ -63,7 +63,7 @@ you will extract the platform-specific binaries:
6363

6464
.. note:: You can use the command above for any published version of Hyperledger
6565
Fabric. Simply replace '1.1.0-alpha' with the version identifier
66-
of the version you wish to install.
66+
of the version you wish to install.
6767

6868
The command above downloads and executes a bash script
6969
that will download and extract all of the platform-specific binaries you

1 commit comments

Comments
 (1)

thoorp commented on Mar 28, 2018

@thoorp

Could we insert a tip on how to find out version of fabric?

Please sign in to comment.