wasm-bindgen/releases/friends.sh
2018-06-19 12:05:52 -07:00

20 lines
311 B
Bash
Executable File

#!/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 "- {}"