You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
462 B

  1. ### Example
  2. ```bash
  3. # Upgrade barak.
  4. # We need to give it a new seed to prevent port conflicts.
  5. ./build/debora run --input "`cat cmd/barak/seed2`" -- barak2 ./build/barak
  6. # Build tendermint from source
  7. ./build/debora run -- build_tendermint bash -c "cd $GOPATH/src/github.com/tendermint/tendermint; make"
  8. # Build and run tendermint
  9. ./build/debora run -- tendermint bash -c "cd \$GOPATH/src/github.com/tendermint/tendermint; make; ./build/tendermint node"
  10. ```