mirror of
https://github.com/stenzek/duckstation.git
synced 2025-06-06 03:25:36 +00:00
Scripts: Add release commit generation script
This commit is contained in:
parent
5ee069fc63
commit
9f41ef9eac
15
scripts/generate_release_commit_list.sh
Executable file
15
scripts/generate_release_commit_list.sh
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
if [ "$#" -ne 1 ]; then
|
||||||
|
echo "Syntax: $0 <commit range, start..end>"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
IFS="
|
||||||
|
"
|
||||||
|
|
||||||
|
printf "## Commits\n"
|
||||||
|
for i in $(git log --oneline --reverse "$1"); do
|
||||||
|
printf -- "- %s\n" "$i"
|
||||||
|
done
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user