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

[skywalking-nginx-lua] branch dmsolr-patch-1 created (now 8e87490)

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

daming pushed a change to branch dmsolr-patch-1
in repository https://gitbox.apache.org/repos/asf/skywalking-nginx-lua.git.


      at 8e87490  Update Makefile

This branch includes the following new commits:

     new 8e87490  Update Makefile

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[skywalking-nginx-lua] 01/01: Update Makefile

Posted by da...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

daming pushed a commit to branch dmsolr-patch-1
in repository https://gitbox.apache.org/repos/asf/skywalking-nginx-lua.git

commit 8e87490f8961d7d1051a6633b26392a9a36d64b2
Author: Daming <zt...@foxmail.com>
AuthorDate: Tue Feb 23 19:17:03 2021 +0800

    Update Makefile
---
 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
+