Skip to content

Commit

Permalink
makerelease.sh: Run git submodule after git checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsuhiro-t committed Feb 17, 2024
1 parent a202a4f commit 2e3cce6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion makerelease.sh
Expand Up @@ -3,10 +3,11 @@
TAG=$1
PREV_TAG=$2

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

git submodule update --init --depth 1

autoreconf -i
./configure && \
make dist-bzip2 && make dist-gzip && make dist-xz || echo "error"
Expand Down

0 comments on commit 2e3cce6

Please sign in to comment.