Browse Source

style fixes from @xla

pull/1250/head
Anton Kaliaev 7 years ago
parent
commit
2ae87eee4e
No known key found for this signature in database GPG Key ID: 7B6881D965918214
3 changed files with 8 additions and 6 deletions
  1. +4
    -4
      CONTRIBUTING.md
  2. +2
    -1
      scripts/dep_utils/checkout.sh
  3. +2
    -1
      scripts/dep_utils/parse.sh

+ 4
- 4
CONTRIBUTING.md View File

@ -43,9 +43,9 @@ software.
Since some dependencies are not under our control, a third party may break our
build, in which case we can fall back on `dep ensure` (or `make
get_vendor_deps`). Even for dependencies under our control, dep helps us keeps
multiple repos in sync as they evolve. Anything with an executable, such as
apps, tools, and the core, should use dep.
get_vendor_deps`). Even for dependencies under our control, dep helps us to
keep multiple repos in sync as they evolve. Anything with an executable, such
as apps, tools, and the core, should use dep.
Run `dep status` to get a list of vendored dependencies that may not be
up-to-date.
@ -66,7 +66,7 @@ make test
## Testing
All repos should be hooked up to circle.
All repos should be hooked up to [CircleCI](https://circleci.com/).
If they have `.go` files in the root directory, they will be automatically
tested by circle using `go test -v -race ./...`. If not, they will need a


+ 2
- 1
scripts/dep_utils/checkout.sh View File

@ -2,10 +2,11 @@
set +u
if [[ "$DEP" == "" ]]; then
DEP=$GOPATH/src/github.com/tendermint/tendermint/Gopkg.lock
DEP=$GOPATH/src/github.com/tendermint/tendermint/Gopkg.lock
fi
set -u
set -u
function getVendoredVersion() {


+ 2
- 1
scripts/dep_utils/parse.sh View File

@ -2,10 +2,11 @@
set +u
if [[ "$DEP" == "" ]]; then
DEP=$GOPATH/src/github.com/tendermint/tendermint/Gopkg.lock
DEP=$GOPATH/src/github.com/tendermint/tendermint/Gopkg.lock
fi
set -u
set -euo pipefail
LIB=$1


Loading…
Cancel
Save