You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@skywalking.apache.org by ke...@apache.org on 2021/10/14 02:20:42 UTC

[skywalking-eyes] branch chore/makefile-release updated (d12ccaa -> f8c03bd)

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

kezhenxu94 pushed a change to branch chore/makefile-release
in repository https://gitbox.apache.org/repos/asf/skywalking-eyes.git.


 discard d12ccaa  Fix release target in Makefile
     new f8c03bd  chore: fix wrong file path and exclude binary files in src release

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (d12ccaa)
            \
             N -- N -- N   refs/heads/chore/makefile-release (f8c03bd)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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.


Summary of changes:

[skywalking-eyes] 01/01: chore: fix wrong file path and exclude binary files in src release

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

kezhenxu94 pushed a commit to branch chore/makefile-release
in repository https://gitbox.apache.org/repos/asf/skywalking-eyes.git

commit f8c03bd0d1660c4fe0fe9a21d7342f6fa16498df
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Thu Oct 14 10:19:41 2021 +0800

    chore: fix wrong file path and exclude binary files in src release
---
 Makefile | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index b274e06..bf239f4 100644
--- a/Makefile
+++ b/Makefile
@@ -95,6 +95,7 @@ release-src: clean
 	--exclude .github \
 	--exclude $(RELEASE_SRC).tgz \
 	--exclude query-protocol/schema.graphqls \
+	--exclude *.jar \
 	.
 
 release-bin: build
@@ -102,8 +103,8 @@ release-bin: build
 	-cp -R bin $(RELEASE_BIN)
 	-cp -R dist/* $(RELEASE_BIN)
 	-cp -R CHANGES.md $(RELEASE_BIN)
-	-cp -R README.adoc $(RELEASE_BIN)
-	-cp -R ../NOTICE $(RELEASE_BIN)
+	-cp -R README.md $(RELEASE_BIN)
+	-cp -R NOTICE $(RELEASE_BIN)
 	-tar -zcvf $(RELEASE_BIN).tgz $(RELEASE_BIN)
 	-rm -rf "$(RELEASE_BIN)"