[docs] Fix incorrect URL to tarball checksum (#3517)

The URL provided in the documentation for the tarball's checksum was
missing a `-`, and resulted in a 404 when actually trying to run the
`curl`. This adds the missing `-` so that the `curl` call will succeed
as expected.

Co-authored-by: Ben Arent <ben@gravitational.com>
This commit is contained in:
Ari Becker 2020-04-07 19:35:46 +03:00 committed by GitHub
parent 723ea0cd12
commit c6641eda71
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,7 +55,7 @@ $ which teleport
**Tarball**
```bash
$ curl https://get.gravitational.com/teleport-v{{ teleport.version }}linux-amd64-bin.tar.gz.sha256
$ curl https://get.gravitational.com/teleport-v{{ teleport.version }}-linux-amd64-bin.tar.gz.sha256
# <checksum> <filename>
$ curl -O https://get.gravitational.com/teleport-v{{ teleport.version }}-linux-amd64-bin.tar.gz
$ shasum -a 256 teleport-v{{ teleport.version }}-linux-amd64-bin.tar.gz
@ -166,4 +166,4 @@ $ sudo chown $USER /var/lib/teleport
If the build succeeds, the binaries `teleport, tsh`, and `tctl` are now in the
directory `$GOPATH/src/github.com/gravitational/teleport/build`
<!--Notes on what to do if the build does not succeed, troubleshooting-->
<!--Notes on what to do if the build does not succeed, troubleshooting-->