diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-06-25 11:43:07 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-06-25 11:43:07 +0200 |
commit | cdb0e62e9b7a537f79f8674bc641fb88ec30c2be (patch) | |
tree | 3a5caa658df1cc74a438eae8a1d58e33f08e2f02 /build/license.php | |
parent | 160d8003f8d42eb3856ba45680c0ace73bee9618 (diff) | |
download | nextcloud-server-cdb0e62e9b7a537f79f8674bc641fb88ec30c2be.tar.gz nextcloud-server-cdb0e62e9b7a537f79f8674bc641fb88ec30c2be.zip |
[license script] sort names case insensitive
Diffstat (limited to 'build/license.php')
-rw-r--r-- | build/license.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/license.php b/build/license.php index 6e3806e1464..214ea3c2269 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) { |