From d19f0e1c5dcbef2d3852cff5d3f73ede1a204964 Mon Sep 17 00:00:00 2001 From: Chris Lane Date: Sun, 27 Oct 2019 10:26:24 -0400 Subject: [PATCH] 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`. --- bin/build_devel.sh | 2 +- bin/build_release.sh | 2 +- bin/deps.sh | 11 ----------- cmd/cheat/main.go | 2 +- 4 files changed, 3 insertions(+), 14 deletions(-) delete mode 100755 bin/deps.sh diff --git a/bin/build_devel.sh b/bin/build_devel.sh index 7a7475c..dfa9383 100755 --- a/bin/build_devel.sh +++ b/bin/build_devel.sh @@ -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/..") diff --git a/bin/build_release.sh b/bin/build_release.sh index 6b10bc0..b43043f 100755 --- a/bin/build_release.sh +++ b/bin/build_release.sh @@ -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/..") diff --git a/bin/deps.sh b/bin/deps.sh deleted file mode 100755 index d45befb..0000000 --- a/bin/deps.sh +++ /dev/null @@ -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 diff --git a/cmd/cheat/main.go b/cmd/cheat/main.go index 39192ef..bc2459a 100755 --- a/cmd/cheat/main.go +++ b/cmd/cheat/main.go @@ -13,7 +13,7 @@ import ( "github.com/cheat/cheat/internal/config" ) -const version = "3.0.0-rc0" +const version = "3.0.1" func main() {