Skip to content

Commit f109f35

Browse files
committed
Merge pull request #381 from overtrue/develop
Develop
2 parents b51a40e + 1e79c77 commit f109f35

File tree

2 files changed

+26
-25
lines changed

2 files changed

+26
-25
lines changed

build/easywechat-split.sh

+25-24
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
#!/bin/bash
22
#
3-
TAGS="master 3.0.9"
3+
HEADS="master 3.0.9"
44

55
split()
66
{
77
SUBDIR=./.split/$1
88
SPLIT=$2
99
HEADS=$3
10+
TAGS=$4
1011

1112
mkdir -p $SUBDIR;
1213

@@ -22,7 +23,7 @@ split()
2223
git subsplit init [email protected]:overtrue/wechat.git
2324
git subsplit update
2425

25-
time git subsplit publish --heads="$HEAD" "$SPLIT" --tags=$TAGS
26+
time git subsplit publish --heads="$HEADS" "$SPLIT" --tags=$TAGS
2627

2728
popd
2829

@@ -33,25 +34,25 @@ split()
3334
rm -rf ./.split
3435
}
3536

36-
split card src/Card:[email protected]:easywechat/card.git $TAGS
37-
split core src/Core:[email protected]:easywechat/core.git $TAGS
38-
split device src/Device:[email protected]:easywechat/device.git $TAGS
39-
split encryption src/Encryption:[email protected]:easywechat/encryption.git $TAGS
40-
split js src/Js:[email protected]:easywechat/js.git $TAGS
41-
split material src/Material:[email protected]:easywechat/material.git $TAGS
42-
split menu src/Menu:[email protected]:easywechat/menu.git $TAGS
43-
split message src/Message:[email protected]:easywechat/message.git $TAGS
44-
split notice src/Notice:[email protected]:easywechat/notice.git $TAGS
45-
split payment src/Payment:[email protected]:easywechat/payment.git $TAGS
46-
split qrcode src/QRCode:[email protected]:easywechat/qrcode.git $TAGS
47-
split semantic src/Semantic:[email protected]:easywechat/semantic.git $TAGS
48-
split server src/Server:[email protected]:easywechat/server.git $TAGS
49-
split staff src/Staff:[email protected]:easywechat/staff.git $TAGS
50-
split stats src/Stats:[email protected]:easywechat/stats.git $TAGS
51-
split store src/Store:[email protected]:easywechat/store.git $TAGS
52-
split poi src/POI:[email protected]:easywechat/poi.git $TAGS
53-
split support src/Support:[email protected]:easywechat/support.git $TAGS
54-
split url src/Url:[email protected]:easywechat/url.git $TAGS
55-
split user src/User:[email protected]:easywechat/user.git $TAGS
56-
split broadcast src/Broadcast:[email protected]:easywechat/broadcast.git $TAGS
57-
split reply src/Reply:[email protected]:easywechat/reply.git $TAGS
37+
split card src/Card:[email protected]:easywechat/card.git $HEADS
38+
split core src/Core:[email protected]:easywechat/core.git $HEADS
39+
split device src/Device:[email protected]:easywechat/device.git $HEADS
40+
split encryption src/Encryption:[email protected]:easywechat/encryption.git $HEADS
41+
split js src/Js:[email protected]:easywechat/js.git $HEADS
42+
split material src/Material:[email protected]:easywechat/material.git $HEADS
43+
split menu src/Menu:[email protected]:easywechat/menu.git $HEADS
44+
split message src/Message:[email protected]:easywechat/message.git $HEADS
45+
split notice src/Notice:[email protected]:easywechat/notice.git $HEADS
46+
split payment src/Payment:[email protected]:easywechat/payment.git $HEADS
47+
split qrcode src/QRCode:[email protected]:easywechat/qrcode.git $HEADS
48+
split semantic src/Semantic:[email protected]:easywechat/semantic.git $HEADS
49+
split server src/Server:[email protected]:easywechat/server.git $HEADS
50+
split staff src/Staff:[email protected]:easywechat/staff.git $HEADS
51+
split stats src/Stats:[email protected]:easywechat/stats.git $HEADS
52+
split store src/Store:[email protected]:easywechat/store.git $HEADS
53+
split poi src/POI:[email protected]:easywechat/poi.git $HEADS
54+
split support src/Support:[email protected]:easywechat/support.git $HEADS
55+
split url src/Url:[email protected]:easywechat/url.git $HEADS
56+
split user src/User:[email protected]:easywechat/user.git $HEADS
57+
split broadcast src/Broadcast:[email protected]:easywechat/broadcast.git $HEADS
58+
split reply src/Reply:[email protected]:easywechat/reply.git $HEADS

src/Store/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "easywechat/shop",
2+
"name": "easywechat/store",
33
"description": "shop module for EasyWeChat SDK.",
44
"keywords": ["wechat", "weixin", "SDK", "shop", "easywechat"],
55
"license": "MIT",

0 commit comments

Comments
 (0)