-
Notifications
You must be signed in to change notification settings - Fork 1
/
update-credits.sh
executable file
·32 lines (23 loc) · 1.08 KB
/
update-credits.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env bash
set -e
cd "$(dirname "$BASH_SOURCE")/.."
# see also ".mailmap" for how email addresses and names are deduplicated
{
cat <<-'EOH'
# Firecracker Credits and Thanks
(This file is autogenerated using [update-credits.sh](tools/update-credits.sh).)
Firecracker started with the code from the Chrome OS Virtual Machine Monitor
([crosvm](https://chromium.googlesource.com/chromiumos/platform/crosvm/)), a VMM
written in Rust with a focus on safety and security. Thanks go to:
* [Zach Reizner](https://github.com/zachreizner) <zachr@chromium.org>
* [Dylan Reid](https://github.com/dgreid) <dgreid@chromium.org>
* [Daniel Verkamp](https://github.com/danielverkamp) <dverkamp@chromium.org>
* [Stephen Barber](https://github.com/smibarber) <smbarber@chromium.org>
* [Chirantan Ekbote](https://github.com/jynnantonix) <chirantan@chromium.org>
* [Jason D. Clinton](https://github.com/jclinton) <jclinton@chromium.org>
* Sonny Rao <sonnyrao@chromium.org>
Contributors to the Firecracker repository:
EOH
echo
git log --format='* %aN <%aE>' | LC_ALL=C.UTF-8 sort -uf
} > CREDITS.md