forked from log2timeline/plaso
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Code review: 262650043: Updated AUTHORS and worked on update script l…
- Loading branch information
1 parent
76427a7
commit 413a60c
Showing
6 changed files
with
38 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,28 +9,28 @@ | |
# See python fnmatch module documentation for more information. | ||
|
||
Google Inc. (*@google.com) | ||
Kristinn Gudjonsson (kiddi@kiddaland.net) | ||
Joachim Metz (joachim.metz@gmail.com) | ||
Brian Baskin (brian@thebaskins.com) | ||
Kristinn Gudjonsson (kristinn@log2timeline.net) | ||
Keith Wall (kwallster@gmail.com) | ||
Eric Mak (ericmak@gmail.com) | ||
David Nides ([email protected]) | ||
Dominique Kilman ([email protected]) | ||
Elizabeth Schweinsberg ([email protected]) | ||
Eric Mak ([email protected]) | ||
Joachim Metz ([email protected]) | ||
Francesco Picasso ([email protected]) | ||
Joaquin Moreno Garijo ([email protected]) | ||
Keith Wall ([email protected]) | ||
Marc Seguin ([email protected]) | ||
Elizabeth Schweinsberg ([email protected]) | ||
Oliver Jensen ([email protected]) | ||
Marc Seguin ([email protected]) | ||
Brian Baskin ([email protected]) | ||
Daniel White ([email protected]) | ||
Johan Berggren ([email protected]) | ||
Joaquin Moren Garijo ([email protected]) | ||
Jerome Marty ([email protected]) | ||
Petter Bjelland ([email protected]) | ||
Marc Leavitt ([email protected]) | ||
Ashley Holtz ([email protected]) | ||
Preston Miller ([email protected]) | ||
Eric John ([email protected]) | ||
Daniel White ([email protected]) | ||
Johan Berggren ([email protected]) | ||
DC3 ([email protected]) | ||
Georg Lukas ([email protected]) | ||
Omer Yampel ([email protected]) | ||
DC3 ([email protected]) | ||
Jason Blanks ([email protected]) | ||
Georg Lukas ([email protected]) | ||
Jerome Marty ([email protected]) | ||
Marc Leavitt ([email protected]) | ||
|
||
Christian Buia ([email protected]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ python-plaso (1.3.1-1) unstable; urgency=low | |
|
||
* Auto-generated | ||
|
||
-- Log2Timeline <[email protected]> Sun, 11 Oct 2015 10:03:15 +0200 | ||
-- Log2Timeline <[email protected]> Mon, 12 Oct 2015 08:05:59 +0200 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
# Script to update the authors information. | ||
|
||
cat > AUTHORS <<EOT | ||
# Names should be added to this file with this pattern: | ||
# | ||
# For individuals: | ||
# Name (email address) | ||
# | ||
# For organizations: | ||
# Organization (fnmatch pattern) | ||
# | ||
# See python fnmatch module documentation for more information. | ||
Google Inc. (*@google.com) | ||
EOT | ||
|
||
git log --format='%aN (%aE)' | tac | awk '!seen[$0]++' >> AUTHORS; | ||
|