diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-04-15 00:16:23 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-04-23 21:47:28 -0400 |
commit | 177929c2363d86ee17814f00d27e0dca4e327b40 (patch) | |
tree | 525b278c0bcde85b249916353b2316e0b4bff990 /tools | |
parent | f75d75eb66308aed2e199ab82fdc2a99170e015c (diff) | |
download | systemd-177929c2363d86ee17814f00d27e0dca4e327b40.tar.gz systemd-177929c2363d86ee17814f00d27e0dca4e327b40.tar.bz2 systemd-177929c2363d86ee17814f00d27e0dca4e327b40.zip |
meson: add git-contrib target
Diffstat (limited to 'tools')
-rw-r--r-- | tools/meson-git-contrib.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/meson-git-contrib.sh b/tools/meson-git-contrib.sh new file mode 100644 index 0000000000..c9d3775bcf --- /dev/null +++ b/tools/meson-git-contrib.sh @@ -0,0 +1,7 @@ +#!/bin/sh -e + +git shortlog -s `git describe --abbrev=0`.. | \ + cut -c8- | \ + sed 's/ / /g' | \ + awk '{ print $$0 "," }' | \ + sort -u |