forked from firecracker-microvm/firecracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update-credits.sh
executable file
·35 lines (25 loc) · 1.18 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
33
34
35
#!/usr/bin/env bash
# Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
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://github.com/google/crosvm)), a VMM written in Rust with a focus
on safety and security. Thanks go to:
- [Zach Reizner](https://github.com/zachreizner) <[email protected]>
- [Dylan Reid](https://github.com/dgreid) <[email protected]>
- [Daniel Verkamp](https://github.com/danielverkamp) <[email protected]>
- [Stephen Barber](https://github.com/smibarber) <[email protected]>
- [Chirantan Ekbote](https://github.com/jynnantonix) <[email protected]>
- [Jason D. Clinton](https://github.com/jclinton) <[email protected]>
- Sonny Rao <[email protected]>
Contributors to the Firecracker repository:
EOH
echo
git log --format='- %aN <%aE>' | LC_ALL=C.UTF-8 sort -uf | grep -v "dependabot"
} > CREDITS.md