mirror of
https://gitee.com/openharmony/third_party_rust_bindgen
synced 2024-12-02 12:36:27 +00:00
c8e237f543
And a script to find all the folks who contributed to the release.
20 lines
305 B
Bash
Executable File
20 lines
305 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 -I{} echo "- {}"
|