Skip to content

Commit

Permalink
scripts: remove install scripts (tendermint#4242)
Browse files Browse the repository at this point in the history
Closes tendermint#4202

- nobody's supporting them
- users who want to try TM should use pre-build binaries
- devs should be able to install using git clone (or use Vagrant)
- validators don't use them (my guess)
  • Loading branch information
melekes authored Dec 12, 2019
1 parent 89f0bbb commit 7e02211
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 190 deletions.
20 changes: 11 additions & 9 deletions docs/introduction/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,6 @@ order: 3

# Install Tendermint

The fastest and easiest way to install the `tendermint` binary
is to run [this script](https://github.com/tendermint/tendermint/blob/master/scripts/install/install_tendermint_ubuntu.sh) on
a fresh Ubuntu instance,
or [this script](https://github.com/tendermint/tendermint/blob/master/scripts/install/install_tendermint_bsd.sh)
on a fresh FreeBSD instance. Read the comments / instructions carefully (i.e., reset your terminal after running the script,
make sure you are okay with the network connections being made).

## From Binary

To download pre-built binaries, see the [releases page](https://github.com/tendermint/tendermint/releases).
Expand All @@ -19,6 +12,7 @@ To download pre-built binaries, see the [releases page](https://github.com/tende

You'll need `go` [installed](https://golang.org/doc/install) and the required
environment variables set, which can be done with the following commands:

```bash
echo export GOPATH=\"\$HOME/go\" >> ~/.bash_profile
echo export PATH=\"\$PATH:\$GOPATH/bin\" >> ~/.bash_profile
Expand Down Expand Up @@ -54,9 +48,17 @@ make build

to put the binary in `./build`.

_DISCLAIMER_ The binary of tendermint is build/installed without the DWARF symbol table. If you would like to build/install tendermint with the DWARF symbol and debug information, remove `-s -w` from `BUILD_FLAGS` in the make file.
_DISCLAIMER_ The binary of tendermint is build/installed without the DWARF
symbol table. If you would like to build/install tendermint with the DWARF
symbol and debug information, remove `-s -w` from `BUILD_FLAGS` in the make
file.

The latest tendermint is now installed. You can verify the installation by
running:

The latest `tendermint version` is now installed.
```
tendermint version
```

## Run

Expand Down
39 changes: 0 additions & 39 deletions scripts/install/install_tendermint_arm.sh

This file was deleted.

54 changes: 0 additions & 54 deletions scripts/install/install_tendermint_bsd.sh

This file was deleted.

40 changes: 0 additions & 40 deletions scripts/install/install_tendermint_osx.sh

This file was deleted.

48 changes: 0 additions & 48 deletions scripts/install/install_tendermint_ubuntu.sh

This file was deleted.

0 comments on commit 7e02211

Please sign in to comment.