Skip to content

Commit

Permalink
Merge "Fixes issue #2272 - sdk/node build issues"
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanLevi authored and Gerrit Code Review committed Jul 30, 2016
2 parents cfeafac + 293c343 commit 69345fa
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions sdk/node/bin/run-unit-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,15 @@ init() {
UNITTEST=$FABRIC/sdk/node/test/unit
EXAMPLES=$FABRIC/examples/chaincode/go

# If the executables don't exist where they belong, build them now in place
# Exit if the executables don't exist where they belong
if [ ! -f $MSEXE ]; then
cd $FABRIC/membersrvc
go build
MSEXE=`pwd`/membersrvc
echo "ERROR: $MSEXE does not exist"
exit 1
fi

if [ ! -f $PEEREXE ]; then
cd $FABRIC/peer
go build
PEEREXE=`pwd`/peer
echo "ERROR: $PEEREXE does not exist"
exit 1
fi

# Always run peer with security and privacy enabled
Expand Down

0 comments on commit 69345fa

Please sign in to comment.