diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-01-16 15:41:45 +0100 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-01-16 15:41:45 +0100 |
commit | c3b20dc648cfd02d3a26bbd6fab0db5a7d39fc05 (patch) | |
tree | 573ad55f55da490d02d500875de8c53848702f59 /tools/gen_authors.sh | |
parent | Converted repository to mercurial (diff) | |
download | smolbote-c3b20dc648cfd02d3a26bbd6fab0db5a7d39fc05.tar.xz |
Fixed build scripts for use with the mercurial repository
Diffstat (limited to 'tools/gen_authors.sh')
-rwxr-xr-x | tools/gen_authors.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/gen_authors.sh b/tools/gen_authors.sh index 4f69c76..ed24634 100755 --- a/tools/gen_authors.sh +++ b/tools/gen_authors.sh @@ -15,8 +15,6 @@ # List of aliases # Aqua, Aqua-sama <aqua@iserlohn-fortress.net>, Xian Nox, xiannox <xian.nox@gmail.com> -git log --pretty="format:%an %ae" $1 \ - | sed -e 's/Aqua /Aqua-sama /g'\ - | sed -e 's/Xian Nox xian\.nox@gmail\.com/Aqua-sama aqua@iserlohn-fortress\.net/g'\ +hg log --template='{author}\n' \ | sort | uniq -c | sort -n -r \ | sed -e 's/^ *[0-9]* / /g' |