Browse Source

test: always rebuild grpc_client

pull/369/head
Ethan Buchman 8 years ago
parent
commit
1afe0cb45f
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      test/app/counter_test.sh

+ 4
- 2
test/app/counter_test.sh View File

@ -35,9 +35,11 @@ function sendTx() {
RESPONSE=`echo $RESPONSE | jq .result[1]`
else
if [ ! -f grpc_client ]; then
go build -o grpc_client grpc_client.go
if [ -f grpc_client ]; then
rm grpc_client
fi
echo "... building grpc_client"
go build -o grpc_client grpc_client.go
RESPONSE=`./grpc_client $TX`
ERROR=""
fi


Loading…
Cancel
Save