aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/kevinburke/go.uuid/Makefile
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-07-19 17:58:15 +0200
committerMichael Muré <batolettre@gmail.com>2018-07-19 17:58:15 +0200
commit9f04fc2f7b31aeefa8281aff0d1d40a698f4b627 (patch)
tree23386ccbd3b53f51af8b35a144b1e9563d5ee621 /vendor/github.com/kevinburke/go.uuid/Makefile
parentf42cf79443fd08f61385761f86ddeb0f914257e6 (diff)
downloadgit-bug-9f04fc2f7b31aeefa8281aff0d1d40a698f4b627.tar.gz
bug: replace the uuid based id with the hash of the first commit
Diffstat (limited to 'vendor/github.com/kevinburke/go.uuid/Makefile')
-rw-r--r--vendor/github.com/kevinburke/go.uuid/Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/vendor/github.com/kevinburke/go.uuid/Makefile b/vendor/github.com/kevinburke/go.uuid/Makefile
deleted file mode 100644
index 344b2381..00000000
--- a/vendor/github.com/kevinburke/go.uuid/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-MEGACHECK := $(GOPATH)/bin/megacheck
-UNAME = $(shell uname -s)
-export GOROOT = $(shell go env GOROOT)
-
-test:
- go test ./...
-
-race-test:
- go test -race ./...
-
-$(MEGACHECK):
-ifeq ($(UNAME),Darwin)
- curl --silent --location --output $(MEGACHECK) https://github.com/kevinburke/go-tools/releases/download/2018-01-25/megacheck-darwin-amd64
-else
- curl --silent --location --output $(MEGACHECK) https://github.com/kevinburke/go-tools/releases/download/2018-01-25/megacheck-linux-amd64
-endif
- chmod +x $(MEGACHECK)
-
-lint: $(MEGACHECK)
- $(MEGACHECK) ./...
- go vet ./...