Skip to content

Commit

Permalink
[FAB-11041] Fix bootstrap.sh messages
Browse files Browse the repository at this point in the history
Fix bootstrap.sh messages to indicate that
tag is checkout out, rather than a branch.

Change-Id: I810823cb4ac83458278d93656d8532f690799b10
Signed-off-by: David Enyeart <enyeart@us.ibm.com>
  • Loading branch information
denyeart committed Oct 1, 2018
1 parent f7b9ac6 commit 02d653d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ samplesInstall() {
# version to the binaries and docker images to be downloaded
if [ -d first-network ]; then
# if we are in the fabric-samples repo, checkout corresponding version
echo "===> Checking out v${VERSION} branch of hyperledger/fabric-samples"
echo "===> Checking out v${VERSION} of hyperledger/fabric-samples"
git checkout v${VERSION}
elif [ -d fabric-samples ]; then
# if fabric-samples repo already cloned and in current directory,
# cd fabric-samples and checkout corresponding version
echo "===> Checking out v${VERSION} branch of hyperledger/fabric-samples"
echo "===> Checking out v${VERSION} of hyperledger/fabric-samples"
cd fabric-samples && git checkout v${VERSION}
else
echo "===> Cloning hyperledger/fabric-samples repo and checkout v${VERSION}"
Expand Down

0 comments on commit 02d653d

Please sign in to comment.