From 1b23f1367bafb8118b7f84df4b233d33903dea9b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20M=C3=BCller?= Date: Wed, 25 Feb 2015 14:00:30 +0100 Subject: [PATCH] fixing ignorance of 'Not Committed Yet' --- build/license.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build/license.php b/build/license.php index bd3bce15a43..322ce2e5e47 100644 --- a/build/license.php +++ b/build/license.php @@ -131,7 +131,10 @@ EOD; $authors = explode(PHP_EOL, $out); $authors = array_filter($authors, function($author) { - return !in_array($author, ['', 'Not Committed Yet', 'Jenkins for ownCloud ']); + return !in_array($author, [ + '', + 'Not Committed Yet ', + 'Jenkins for ownCloud ']); }); $authors = array_map(function($author){ return " * @author $author"; -- 2.39.5