cheat/bin/deps.sh
Chris Lane e5114a3e76 Re-wrote from scratch in Golang
- Re-implemented the project in Golang, and deprecated Python entirely
- Implemented several new, long-requested features
- Refactored cheatsheets into a separate repository
2019-10-20 10:02:28 -04:00

12 lines
321 B
Bash
Executable File

#!/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