mirror of
https://github.com/FEX-Emu/FEX.git
synced 2024-12-14 01:18:46 +00:00
8 lines
185 B
Bash
Executable File
8 lines
185 B
Bash
Executable File
#!/bin/env bash
|
|
if [ "$#" -ne 2 ];
|
|
then
|
|
echo "$0: <PEV-TAG> <NEXT-TAG>"
|
|
exit -1
|
|
fi
|
|
git log "$1..HEAD" --pretty="%b (%h)" --abbrev-commit --merges | Scripts/changelog_generator.py "$2"
|