You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2021/02/23 11:30:01 UTC

[skywalking-nginx-lua] branch master updated: Update Makefile (#64)

This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-nginx-lua.git


The following commit(s) were added to refs/heads/master by this push:
     new 0948653  Update Makefile (#64)
0948653 is described below

commit 094865343f847ade515132a1f571450db2f24e66
Author: Daming <zt...@foxmail.com>
AuthorDate: Tue Feb 23 19:29:44 2021 +0800

    Update Makefile (#64)
---
 Makefile | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/Makefile b/Makefile
index 4264698..697fda5 100644
--- a/Makefile
+++ b/Makefile
@@ -37,13 +37,14 @@ help:
 .PHONY: release-src
 release-src:
 	tar -zcvf $(RELEASE_SRC).tgz \
-	--exclude bin \
-	--exclude .git \
-	--exclude .idea \
-	--exclude .gitignore \
-	--exclude .DS_Store \
-	--exclude .github \
-	.
+		./examples \
+		./licenses \
+		./rockspec \
+		./lib \
+		./t \
+		./Makefile \
+		./NOTICE \
+		./*.md 
 
 	gpg --batch --yes --armor --detach-sig $(RELEASE_SRC).tgz
 	shasum -a 512 $(RELEASE_SRC).tgz > $(RELEASE_SRC).tgz.sha512
@@ -52,3 +53,4 @@ release-src:
 	mv $(RELEASE_SRC).tgz release/$(RELEASE_SRC).tgz
 	mv $(RELEASE_SRC).tgz.asc release/$(RELEASE_SRC).tgz.asc
 	mv $(RELEASE_SRC).tgz.sha512 release/$(RELEASE_SRC).tgz.sha512
+