chore: deprecates `bin/deps.sh`

- Deprecates `bin/deps.sh`. It was rendered obsolete with 217566, and
  the introduction of a `go.mod` file.
- Fixes two minor typos in the buld scripts.
- Bumps the version to `3.0.1`.
This commit is contained in:
Chris Lane 2019-10-27 10:26:24 -04:00
parent 0f9861f825
commit d19f0e1c5d
4 changed files with 3 additions and 14 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash
# locate the lambo project root
# locate the cheat project root
BINDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
APPDIR=$(readlink -f "$BINDIR/..")

View File

@ -1,6 +1,6 @@
#!/bin/bash
# locate the lambo project root
# locate the cheat project root
BINDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
APPDIR=$(readlink -f "$BINDIR/..")

View File

@ -1,11 +0,0 @@
#!/bin/bash
# This script installs all Go dependencies required for
# building `cheat` locally.
go get -u github.com/alecthomas/chroma
go get -u github.com/davecgh/go-spew/spew
go get -u github.com/docopt/docopt-go
go get -u github.com/mgutz/ansi
go get -u github.com/mitchellh/go-homedir
go get -u github.com/tj/front

View File

@ -13,7 +13,7 @@ import (
"github.com/cheat/cheat/internal/config"
)
const version = "3.0.0-rc0"
const version = "3.0.1"
func main() {