diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-06-27 20:22:23 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-06-27 20:22:23 +0200 |
commit | d1f0ff372e8c05ced760d4e21060e8d8db9c1963 (patch) | |
tree | 19cda384ecba1aa1afd161233c55caa3879d21a2 /build | |
parent | 708c6268ad81b87b77d4b10cf783e2f84b4f6735 (diff) | |
parent | 0032cddb400dc3e29bf77cef6ffb2c7e0ac8449a (diff) | |
download | nextcloud-server-d1f0ff372e8c05ced760d4e21060e8d8db9c1963.tar.gz nextcloud-server-d1f0ff372e8c05ced760d4e21060e8d8db9c1963.zip |
Merge pull request #17163 from owncloud/update-licenses
Update license headers
Diffstat (limited to 'build')
-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) { |