mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-22 13:33:56 +03:00
1ab4edae12
Bots are not people, no reason to say thanks to them and list them as authors or contributors.
8 lines
232 B
Bash
Executable File
8 lines
232 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
set -eu
|
|
|
|
git shortlog --author=noreply@weblate.org --invert-grep -s `git describe --abbrev=0 --match 'v[0-9][0-9][0-9]'`.. | \
|
|
awk '{ $1=""; print $0 "," }' | \
|
|
sort -u
|