From 88a0d4844f030cd98ef2c9f5aeb89a00100a7d64 Mon Sep 17 00:00:00 2001 From: Brian Ketelsen Date: Tue, 5 Dec 2017 18:11:55 +0000 Subject: [PATCH] Makefile: cleanup authors target to preserve history --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index afc487bcf..3a8fee117 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ github_repo := virtual-kubelet/virtual-kubelet binary := virtual-kubelet # comment this line out for quieter things -V := 1 # When V is set, print commands and build progress. +#V := 1 # When V is set, print commands and build progress. # Space separated patterns of packages to skip in list, test, format. IGNORED_PACKAGES := /vendor/ @@ -162,4 +162,8 @@ $(GOPATH)/bin/goreleaser: go get -u github.com/goreleaser/goreleaser authors: - git log --all --format='%aN <%cE>' | sort -u | sed -n '/github/!p' > AUTHORS + $Q git log --all --format='%aN <%cE>' | sort -u | sed -n '/github/!p' > GITAUTHORS + $Q cat AUTHORS GITAUTHORS | sort -u > NEWAUTHORS + $Q mv NEWAUTHORS AUTHORS + $Q rm -f NEWAUTHORS + $Q rm -f GITAUTHORS