From 18f806ba41c3bed8ca567da589a5b9d90cbfca6b Mon Sep 17 00:00:00 2001 From: Aetnaeus Date: Mon, 28 Dec 2020 02:08:00 -0500 Subject: [PATCH] Purged binaries from git history (please re-clone). I didn't realize quite how much space the binaries were taking so they have been purged from the repo. They will subsequently be distributed using github's release mechanism. If you cloned tt previously you will need to reclone it (it should save you in excess of 100MB of disk space :P). Apologies if you are one of the poor souls who tried to 'go get' it. --- Makefile | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 5915105..72a07d4 100644 --- a/Makefile +++ b/Makefile @@ -5,9 +5,7 @@ install: assets: python3 tools/themegen.py | gofmt > generatedThemes.go 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 + GOOS=darwin GOARCH=amd64 go build -o bin/tt-osx *.go + GOOS=windows GOARCH=amd64 go build -o bin/tt-windows *.go + GOOS=linux GOARCH=amd64 go build -o bin/tt-linux *.go + GOOS=linux GOARCH=386 go build -o bin/tt-linux_386 *.go