Skip to content

Commit

Permalink
Merge "Fix repo server address"
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanLevi authored and Gerrit Code Review committed Aug 3, 2016
2 parents df6c522 + c98567e commit c1b13e3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion devenv/setupRHELonZ.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# yum install git
# mkdir -p $HOME/git/src/github.com/hyperledger
# cd $HOME/git/src/github.com/hyperledger
# git clone https://github.com/hyperledger/fabric.git
# git clone http://gerrit.hyperledger.org/r/fabric
# source fabric/devenv/setupRHELonZ.sh
# make peer unit-test behave

Expand Down
2 changes: 1 addition & 1 deletion docs/Setup/Chaincode-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ Next, you'll need to clone the Hyperledger fabric to your local $GOPATH, so that
```
mkdir -p $GOPATH/src/github.com/hyperledger
cd $GOPATH/src/github.com/hyperledger
git clone https://github.com/hyperledger/fabric.git
git clone http://gerrit.hyperledger.org/r/fabric
```

Now, you should be able to build your chaincode.
Expand Down
2 changes: 1 addition & 1 deletion docs/dev-setup/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ sudo su
yum install git
mkdir -p $HOME/git/src/github.com/hyperledger
cd $HOME/git/src/github.com/hyperledger
git clone https://github.com/hyperledger/fabric.git
git clone http://gerrit.hyperledger.org/r/fabric
source fabric/devenv/setupRHELonZ.sh
```
From this point, you can proceed as described above for the Vagrant development environment.
Expand Down
2 changes: 1 addition & 1 deletion sdk/node/bin/run-unit-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ prepareExampleForDeployInNetworkMode() {
mkdir -p vendor/github.com/hyperledger
cd vendor/github.com/hyperledger
echo "cloning github.com/hyperledger/fabric; please wait ..."
git clone https://github.com/hyperledger/fabric > /dev/null
git clone http://gerrit.hyperledger.org/r/fabric > /dev/null
cp -r fabric/vendor/github.com/op ..
cd ../../..
go build
Expand Down

0 comments on commit c1b13e3

Please sign in to comment.