[Pkg-owncloud-commits] [owncloud] 117/205: [license script] sort names case insensitive
David Prévot
taffit at moszumanska.debian.org
Thu Jul 2 17:37:02 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch stable8
in repository owncloud.
commit cdb0e62e9b7a537f79f8674bc641fb88ec30c2be
Author: Morris Jobke <hey at morrisjobke.de>
Date: Thu Jun 25 11:43:07 2015 +0200
[license script] sort names case insensitive
---
build/license.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build/license.php b/build/license.php
index 6e3806e..214ea3c 100644
--- a/build/license.php
+++ b/build/license.php
@@ -144,7 +144,7 @@ EOD;
}
private function getAuthors($file) {
- $out = shell_exec("git blame --line-porcelain $file | sed -n 's/^author //p;s/^author-mail //p' | sed 'N;s/\\n/ /' | sort | uniq");
+ $out = shell_exec("git blame --line-porcelain $file | sed -n 's/^author //p;s/^author-mail //p' | sed 'N;s/\\n/ /' | sort -f | uniq");
$authors = explode(PHP_EOL, $out);
$authors = array_filter($authors, function($author) {
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list