summaryrefslogtreecommitdiffstats
path: root/vendor/wasm-bindgen/releases/friends.sh
blob: 4486b4229676b6d880df9243d14eee2d790d1225 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env bash

set -eu
set -o pipefail

cd $(dirname $0)

if [[ -z "${1+x}" ]]; then
    read -p "List friends since which commit/tag? " since
    echo
else
    since=$1
fi

git shortlog -s -n "$since.." \
    | cut -f 2- \
    | sort -u \
    | grep -v bors\-servo \
    | xargs -d '\n' -I{} echo "- {}"