Skip to content

Commit

Permalink
[FAB-3324] Fix getting started scripts and instructions
Browse files Browse the repository at this point in the history
ORDERER_CFG_PATH changed to FABRIC_CFG_PATH
this solves the "unsupported config type" error
fix the manual export command on README
[ci-skip]

Change-Id: I7015c7ded4d38b953f05f77d48f428a5ce7f908e
Signed-off-by: Nick Gaski <ngaski@us.ibm.com>
  • Loading branch information
nickgaski committed Apr 28, 2017
1 parent ca3a1a2 commit bf9b4b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions examples/dchackfest/samples/e2e/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Next, execute the following command:

.. code:: bash
curl -L https://logs.hyperledger.org/sandbox/vex-yul-hyp-jenkins-2/fabric-verify-x86_64_1/4/release.tar.gz -o release.tar.gz 2> /dev/null; tar -xvf release.tar.gz
curl -L https://logs.hyperledger.org/sandbox/vex-yul-hyp-jenkins-2/fabric-verify-x86_64_1/5/release.tar.gz -o release.tar.gz 2> /dev/null; tar -xvf release.tar.gz
This command pulls and extracts all of the necessary artifacts to set up your
network and places them into a folder titled ``release``. It also retrieves the
Expand Down Expand Up @@ -161,7 +161,7 @@ From your ``e2e`` folder first execute the following:
.. code:: bash
# this command will not return a response
export ORDERER_CFG_PATH=$PWD
export FABRIC_CFG_PATH=$PWD
Then use the tool:

Expand Down
2 changes: 1 addition & 1 deletion examples/dchackfest/samples/e2e/network_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function generateArtifacts () {
echo "##########################################################"
echo "######### Generating Orderer Genesis block ##############"
echo "##########################################################"
export ORDERER_CFG_PATH=$PWD
export FABRIC_CFG_PATH=$PWD
./../../$os_arch/bin/configtxgen -profile TwoOrgs -outputBlock orderer.block
echo
echo
Expand Down

0 comments on commit bf9b4b8

Please sign in to comment.