mirror of
https://bitbucket.org/smil3y/katana.git
synced 2025-02-23 10:22:46 +00:00
changelog.sh: do not include merges in changelog
This commit is contained in:
parent
18568a52ea
commit
80a2761282
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ for p in "${packs[@]}";do
|
|||
echo "Generating changes for $p as of $date..."
|
||||
cd "$p"
|
||||
changes+="\nChanges to $p since $date:"
|
||||
pchanges="$(git log --since=$date --format=' * %s' | sort -u)"
|
||||
pchanges="$(git log --no-merges --since=$date --format=' * %s' | sort -u)"
|
||||
if [ -z "$pchanges" ];then
|
||||
pchanges=" * none"
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue