Browse Source

get_tools = tools (#3988)

- in the makefile update `get_tools` was changed to just `tools`

Signed-off-by: Marko Baricevic <marbar3778@yahoo.com>
pull/3994/head
Marko 5 years ago
committed by GitHub
parent
commit
522a849ba9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
16 changed files with 17 additions and 17 deletions
  1. +1
    -1
      DOCKER/Dockerfile.abci
  2. +1
    -1
      Vagrantfile
  3. +1
    -1
      docs/app-dev/abci-cli.md
  4. +1
    -1
      docs/app-dev/getting-started.md
  5. +1
    -1
      docs/introduction/install.md
  6. +1
    -1
      docs/tools/monitoring.md
  7. +1
    -1
      networks/remote/integration.sh
  8. +1
    -1
      scripts/dist.sh
  9. +1
    -1
      scripts/install/install_tendermint_arm.sh
  10. +1
    -1
      scripts/install/install_tendermint_bsd.sh
  11. +1
    -1
      scripts/install/install_tendermint_osx.sh
  12. +1
    -1
      scripts/install/install_tendermint_ubuntu.sh
  13. +2
    -2
      tools/build/Makefile
  14. +1
    -1
      tools/tm-bench/Dockerfile.dev
  15. +1
    -1
      tools/tm-monitor/Dockerfile.dev
  16. +1
    -1
      tools/tm-monitor/README.md

+ 1
- 1
DOCKER/Dockerfile.abci View File

@ -15,7 +15,7 @@ RUN apt-get update && apt-get install -y \
COPY Gopkg.toml /go/src/github.com/tendermint/abci/
COPY Gopkg.lock /go/src/github.com/tendermint/abci/
RUN make get_tools
RUN make tools
# see https://github.com/golang/dep/issues/1312
RUN dep ensure -vendor-only


+ 1
- 1
Vagrantfile View File

@ -57,6 +57,6 @@ Vagrant.configure("2") do |config|
# get all deps and tools, ready to install/test
su - vagrant -c 'source /home/vagrant/.bash_profile'
su - vagrant -c 'cd /home/vagrant/go/src/github.com/tendermint/tendermint && make get_tools'
su - vagrant -c 'cd /home/vagrant/go/src/github.com/tendermint/tendermint && make tools'
SHELL
end

+ 1
- 1
docs/app-dev/abci-cli.md View File

@ -15,7 +15,7 @@ mkdir -p $GOPATH/src/github.com/tendermint
cd $GOPATH/src/github.com/tendermint
git clone https://github.com/tendermint/tendermint.git
cd tendermint
make get_tools
make tools
make install_abci
```


+ 1
- 1
docs/app-dev/getting-started.md View File

@ -27,7 +27,7 @@ Then run
```
go get github.com/tendermint/tendermint
cd $GOPATH/src/github.com/tendermint/tendermint
make get_tools
make tools
make install_abci
```


+ 1
- 1
docs/introduction/install.md View File

@ -28,7 +28,7 @@ cd tendermint
### Get Tools & Dependencies
```
make get_tools
make tools
```
### Compile


+ 1
- 1
docs/tools/monitoring.md View File

@ -87,6 +87,6 @@ websocket.
## Development
```
make get_tools
make tools
make test
```

+ 1
- 1
networks/remote/integration.sh View File

@ -30,7 +30,7 @@ go get $REPO
cd $GOPATH/src/$REPO
## build
make get_tools
make tools
make build
# generate an ssh key


+ 1
- 1
scripts/dist.sh View File

@ -29,7 +29,7 @@ XC_OS=${XC_OS:-"solaris darwin freebsd linux windows"}
XC_EXCLUDE=${XC_EXCLUDE:-" darwin/arm solaris/amd64 solaris/386 solaris/arm freebsd/amd64 windows/arm "}
# Make sure build tools are available.
make get_tools
make tools
# Build!
# ldflags: -s Omit the symbol table and debug information.


+ 1
- 1
scripts/install/install_tendermint_arm.sh View File

@ -31,7 +31,7 @@ cd "$GOPATH/src/$REPO"
git checkout $BRANCH
# XXX: uncomment if branch isn't master
# git fetch origin $BRANCH
make get_tools
make tools
make install
# the binary is located in $GOPATH/bin


+ 1
- 1
scripts/install/install_tendermint_bsd.sh View File

@ -46,7 +46,7 @@ cd "$GOPATH/src/$REPO"
# build & install master
git checkout $BRANCH
gmake get_tools
gmake tools
gmake install
# the binary is located in $GOPATH/bin


+ 1
- 1
scripts/install/install_tendermint_osx.sh View File

@ -36,5 +36,5 @@ cd $GOPATH/src/$REPO
git checkout $BRANCH
# XXX: uncomment if branch isn't master
# git fetch origin $BRANCH
make get_tools
make tools
make install

+ 1
- 1
scripts/install/install_tendermint_ubuntu.sh View File

@ -40,7 +40,7 @@ cd "$GOPATH/src/$REPO"
git checkout $BRANCH
# XXX: uncomment if branch isn't master
# git fetch origin $BRANCH
make get_tools
make tools
make install
# the binary is located in $GOPATH/bin


+ 2
- 2
tools/build/Makefile View File

@ -64,7 +64,7 @@ build-tendermint: git-branch gopath-setup
@echo "*** Building tendermint"
go get -d -u github.com/tendermint/tendermint/cmd/tendermint
cd $(GOPATH)/src/github.com/tendermint/tendermint && git checkout "$(GIT_BRANCH)" && git pull
export PATH=$(GOPATH)/bin:$(PATH) && $(MAKE) -C $(GOPATH)/src/github.com/tendermint/tendermint get_tools build
export PATH=$(GOPATH)/bin:$(PATH) && $(MAKE) -C $(GOPATH)/src/github.com/tendermint/tendermint tools build
cp $(GOPATH)/src/github.com/tendermint/tendermint/build/tendermint $(GOPATH)/bin
@echo "*** Built tendermint"
@ -87,7 +87,7 @@ build-basecoind: git-branch gopath-setup
@echo "*** Building basecoind from cosmos-sdk"
go get -d -u github.com/cosmos/cosmos-sdk/examples/basecoin/cmd/basecoind
cd $(GOPATH)/src/github.com/cosmos/cosmos-sdk && git checkout "$(GIT_BRANCH)" && git pull
export PATH=$(GOPATH)/bin:$(PATH) && $(MAKE) -C $(GOPATH)/src/github.com/cosmos/cosmos-sdk get_tools build
export PATH=$(GOPATH)/bin:$(PATH) && $(MAKE) -C $(GOPATH)/src/github.com/cosmos/cosmos-sdk tools build
cp $(GOPATH)/src/github.com/cosmos/cosmos-sdk/build/basecoind $(GOPATH)/bin/basecoind
@echo "*** Built basecoind from cosmos-sdk"


+ 1
- 1
tools/tm-bench/Dockerfile.dev View File

@ -5,7 +5,7 @@ WORKDIR /go/src/github.com/tendermint/tendermint/tools/tm-bench
COPY Makefile /go/src/github.com/tendermint/tendermint/tools/tm-bench/
RUN make get_tools
RUN make tools
COPY . /go/src/github.com/tendermint/tendermint/tools/tm-bench

+ 1
- 1
tools/tm-monitor/Dockerfile.dev View File

@ -5,7 +5,7 @@ WORKDIR /go/src/github.com/tendermint/tools/tm-monitor
COPY Makefile /go/src/github.com/tendermint/tools/tm-monitor/
RUN make get_tools
RUN make tools
COPY . /go/src/github.com/tendermint/tools/tm-monitor

+ 1
- 1
tools/tm-monitor/README.md View File

@ -86,6 +86,6 @@ websocket.
## Development
```
make get_tools
make tools
make test
```

Loading…
Cancel
Save