You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by if...@apache.org on 2021/03/28 05:39:23 UTC

[rocketmq-client-nodejs] branch n-api updated (589a960 -> 747611c)

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

ifplusor pushed a change to branch n-api
in repository https://gitbox.apache.org/repos/asf/rocketmq-client-nodejs.git.


 discard 589a960  fix: ci
     new 747611c  fix: ci

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   (589a960)
            \
             N -- N -- N   refs/heads/n-api (747611c)

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:
 deps/rocketmq | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

[rocketmq-client-nodejs] 01/01: fix: ci

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

ifplusor pushed a commit to branch n-api
in repository https://gitbox.apache.org/repos/asf/rocketmq-client-nodejs.git

commit 747611c5eacf5d016f34dbc3c060a9b558d69604
Author: James Yin <yw...@hotmail.com>
AuthorDate: Sun Mar 28 13:29:48 2021 +0800

    fix: ci
---
 deps/rocketmq | 2 +-
 package.json  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/deps/rocketmq b/deps/rocketmq
index fcecc8d..1584a34 160000
--- a/deps/rocketmq
+++ b/deps/rocketmq
@@ -1 +1 @@
-Subproject commit fcecc8dba97972d4c934b00cadc97a07406b563d
+Subproject commit 1584a34ec7a44137085dbc5eb2b3047726b433fc
diff --git a/package.json b/package.json
index 5e38e40..f2ed65e 100644
--- a/package.json
+++ b/package.json
@@ -8,7 +8,7 @@
   "main": "index.js",
   "scripts": {
     "preinstall": "git submodule update --init --recommend-shallow",
-    "install": "deps/rocketmq/build.sh && node-gyp rebuild",
+    "install": "if [ ! -d deps/rocketmq/bin ]; then deps/rocketmq/build.sh; fi && node-gyp rebuild",
     "test": "npm run lint && echo 'temp example test' && node example/producer.js && node example/push_consumer.js",
     "lint": "eslint ."
   },