mirror of https://github.com/cheat/cheat.git
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:
parent
0f9861f825
commit
d19f0e1c5d
|
@ -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/..")
|
||||
|
||||
|
|
|
@ -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/..")
|
||||
|
||||
|
|
11
bin/deps.sh
11
bin/deps.sh
|
@ -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
|
|
@ -13,7 +13,7 @@ import (
|
|||
"github.com/cheat/cheat/internal/config"
|
||||
)
|
||||
|
||||
const version = "3.0.0-rc0"
|
||||
const version = "3.0.1"
|
||||
|
||||
func main() {
|
||||
|
||||
|
|
Loading…
Reference in New Issue