aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
Diffstat (limited to 'build')
-rw-r--r--build/license.php2
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) {