Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2016-07-21 18:08:43 +0300
committerJoas Schilling <coding@schilljs.com>2016-07-21 19:06:31 +0300
commitc98de829c48da80dcdcd6db88b4575369950e2dc (patch)
tree5eeb668819ce779e095bbf7056f9832b931abb04 /build/license.php
parent8ec019e10594857a018d3f9298659a5757930fbf (diff)
Fix the license script
Diffstat (limited to 'build/license.php')
-rw-r--r--build/license.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/build/license.php b/build/license.php
index 1712899d686..4091afe2fb5 100644
--- a/build/license.php
+++ b/build/license.php
@@ -124,7 +124,7 @@ EOD;
function writeAuthorsFile() {
ksort($this->authors);
- $template = "ownCloud is written by:
+ $template = "Nextcloud is written by:
@AUTHORS@
With help from many libraries and frameworks including:
@@ -277,7 +277,7 @@ With help from many libraries and frameworks including:
private function printFilesToCheck() {
if (!empty($this->checkFiles)) {
print "\n";
- print "For following files all lines changes since the Nextcloud fork." . PHP_EOL;
+ print "For following files all lines changed since the Nextcloud fork." . PHP_EOL;
print "Please check if these files can be moved over to AGPLv3 or later" . PHP_EOL;
print "\n";
foreach ($this->checkFiles as $file) {
@@ -349,6 +349,7 @@ if (isset($argv[1])) {
$licenses->exec($argv[1], isset($argv[2]) ? $argv[1] : false);
} else {
$licenses->exec([
+ '../apps/admin_audit',
'../apps/comments',
'../apps/dav',
'../apps/encryption',
@@ -362,8 +363,10 @@ if (isset($argv[1])) {
'../apps/provisioning_api',
'../apps/systemtags',
'../apps/testing',
+ '../apps/theming',
'../apps/updatenotification',
'../apps/user_ldap',
+ '../build/integration/features/bootstrap',
'../core',
'../lib',
'../ocs',