From 103c231a1df4c6d89edcf3230dcdcec32e6b1137 Mon Sep 17 00:00:00 2001 From: "Xinwei Xiong(cubxxw)" <3293172751nss@gmail.com> Date: Sat, 13 May 2023 20:57:03 +0800 Subject: [PATCH] fix: copyright owner Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> --- script/make-rules/copyright.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/make-rules/copyright.mk b/script/make-rules/copyright.mk index 40a6c9a67..f530a26c5 100644 --- a/script/make-rules/copyright.mk +++ b/script/make-rules/copyright.mk @@ -17,7 +17,7 @@ # Makefile helper functions for copyright # -LICENSE_TEMPLATE ?= $(ROOT_DIR)/script/LICENSE_TEMPLATE +LICENSE_TEMPLATE ?= $(ROOT_DIR)/script/LICENSE_TEMPLATES # TODO: GOBIN -> TOOLS_DIR # Questions about go mod instead of go path: https://github.com/kubernetes/kubernetes/issues/117181 @@ -32,7 +32,7 @@ copyright.verify: tools.verify.addlicense .PHONY: copyright.add copyright.add: tools.verify.addlicense @echo "===========> Adding $(LICENSE_TEMPLATE) the boilerplate headers for all files" - @$(GOBIN)/addlicense -y $(shell date +"%Y") -v -c "Alibaba Group Holding Ltd." -f $(LICENSE_TEMPLATE) $(CODE_DIRS) + @$(GOBIN)/addlicense -y $(shell date +"%Y") -v -c "OpenIM." -f $(LICENSE_TEMPLATE) $(CODE_DIRS) @echo "===========> End the copyright is added..." # Addlicense Flags: