Skip to content

Commit 2e3cce6

Browse files
committed
makerelease.sh: Run git submodule after git checkout
1 parent a202a4f commit 2e3cce6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

makerelease.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
TAG=$1
44
PREV_TAG=$2
55

6-
git submodule update --init
76
git checkout refs/tags/$TAG
87
git log --pretty=fuller --date=short refs/tags/$PREV_TAG..HEAD > ChangeLog
98

9+
git submodule update --init --depth 1
10+
1011
autoreconf -i
1112
./configure && \
1213
make dist-bzip2 && make dist-gzip && make dist-xz || echo "error"

0 commit comments

Comments
 (0)