From 790b195fd9dfb6fdf241d865330962c37de7b1fc Mon Sep 17 00:00:00 2001 From: weizhoublue <45163302+weizhoublue@users.noreply.github.com> Date: Wed, 13 Dec 2023 19:32:24 +0800 Subject: [PATCH] Update Makefile --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 7bc8572fd5..1cc324880e 100644 --- a/Makefile +++ b/Makefile @@ -182,14 +182,13 @@ dev-doctor: #============ tools ==================== .PHONY: update-authors -update-authors: ## Update AUTHORS file for Cilium repository. +update-authors: ## Update AUTHORS file for the repository. @echo "Updating AUTHORS file..." @echo "The following people, in alphabetical order, have either authored or signed" > AUTHORS - @echo "off on commits in the Cilium repository:" >> AUTHORS + @echo "off on commits in the repository:" >> AUTHORS @echo "" >> AUTHORS @contrib/authorgen/authorgen.sh >> AUTHORS - .PHONY: licenses-all licenses-all: ## Generate file with all the License from dependencies. @$(GO) run ./contrib/licensegen > LICENSE.all || ( rm -f LICENSE.all ; false )