1
0
mirror of https://github.com/strongdm/comply synced 2025-12-06 14:24:12 +00:00

chore: migrate to go modules

This commit is contained in:
Carlos C
2019-07-14 13:51:10 -03:00
parent 87e8266f1b
commit c303b68201
125 changed files with 7334 additions and 2443 deletions

31
vendor/github.com/containous/go-bindata/Makefile generated vendored Normal file
View File

@@ -0,0 +1,31 @@
.PHONY: all clean checks test build image dependencies
SRCS = $(shell git ls-files '*.go' | grep -v '^vendor/')
MAIN_DIRECTORY := ./go-bindata/
BIN_OUTPUT := dist/go-bindata
TAG_NAME := $(shell git tag -l --contains HEAD)
SHA := $(shell git rev-parse HEAD)
VERSION := $(if $(TAG_NAME),$(TAG_NAME),$(SHA))
default: clean test build
clean:
rm -rf dist/ builds/ cover.out
build: clean
@echo Version: $(VERSION)
go build -v -ldflags '-X "main.AppVersion=${VERSION}"' -o ${BIN_OUTPUT} ${MAIN_DIRECTORY}
dependencies:
dep ensure -v
test: clean
go test -v -cover ./...
testdata:
make -C testdata
fmt:
gofmt -s -l -w $(SRCS)