Added binaries
This commit is contained in:
7
Makefile
7
Makefile
@ -2,3 +2,10 @@ all:
|
||||
go build -o bin/tt *.go
|
||||
install:
|
||||
install -m755 bin/tt /usr/local/bin
|
||||
rel:
|
||||
GOOS=darwin GOARCH=386 go build -o binaries/tt-osx_386 *.go
|
||||
GOOS=darwin GOARCH=amd64 go build -o binaries/tt-osx_amd64 *.go
|
||||
GOOS=windows GOARCH=386 go build -o binaries/tt-windows_386 *.go
|
||||
GOOS=windows GOARCH=amd64 go build -o binaries/tt-windows_amd64 *.go
|
||||
GOOS=linux GOARCH=386 go build -o binaries/tt-linux_386 *.go
|
||||
GOOS=linux GOARCH=amd64 go build -o binaries/tt-linux_amd64 *.go
|
||||
|
13
README.md
13
README.md
@ -15,6 +15,19 @@ or
|
||||
|
||||
`go get github.com/lemnos/tt` if you have $GOPATH/bin in your $PATH
|
||||
|
||||
Binaries are also available:
|
||||
|
||||
## OSX
|
||||
|
||||
```
|
||||
sudo curl https://raw.githubusercontent.com/lemnos/tt/master/binaries/tt-osx_amd64 /usr/local/bin/tt && sudo chmod +x /usr/local/bin/tt
|
||||
```
|
||||
|
||||
## Linux
|
||||
|
||||
```
|
||||
sudo curl https://raw.githubusercontent.com/lemnos/tt/master/binaries/tt-linux_amd64 -o /usr/local/bin/tt && sudo chmod +x /usr/local/bin/tt
|
||||
```
|
||||
|
||||
Best served on a terminal with truecolor and cursor shape support (e.g urxvt, kitty, iterm)
|
||||
|
||||
|
Reference in New Issue
Block a user