Fix the license script
This commit is contained in:
parent
8ec019e105
commit
c98de829c4
|
@ -124,7 +124,7 @@ EOD;
|
||||||
|
|
||||||
function writeAuthorsFile() {
|
function writeAuthorsFile() {
|
||||||
ksort($this->authors);
|
ksort($this->authors);
|
||||||
$template = "ownCloud is written by:
|
$template = "Nextcloud is written by:
|
||||||
@AUTHORS@
|
@AUTHORS@
|
||||||
|
|
||||||
With help from many libraries and frameworks including:
|
With help from many libraries and frameworks including:
|
||||||
|
@ -277,7 +277,7 @@ With help from many libraries and frameworks including:
|
||||||
private function printFilesToCheck() {
|
private function printFilesToCheck() {
|
||||||
if (!empty($this->checkFiles)) {
|
if (!empty($this->checkFiles)) {
|
||||||
print "\n";
|
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 "Please check if these files can be moved over to AGPLv3 or later" . PHP_EOL;
|
||||||
print "\n";
|
print "\n";
|
||||||
foreach ($this->checkFiles as $file) {
|
foreach ($this->checkFiles as $file) {
|
||||||
|
@ -349,6 +349,7 @@ if (isset($argv[1])) {
|
||||||
$licenses->exec($argv[1], isset($argv[2]) ? $argv[1] : false);
|
$licenses->exec($argv[1], isset($argv[2]) ? $argv[1] : false);
|
||||||
} else {
|
} else {
|
||||||
$licenses->exec([
|
$licenses->exec([
|
||||||
|
'../apps/admin_audit',
|
||||||
'../apps/comments',
|
'../apps/comments',
|
||||||
'../apps/dav',
|
'../apps/dav',
|
||||||
'../apps/encryption',
|
'../apps/encryption',
|
||||||
|
@ -362,8 +363,10 @@ if (isset($argv[1])) {
|
||||||
'../apps/provisioning_api',
|
'../apps/provisioning_api',
|
||||||
'../apps/systemtags',
|
'../apps/systemtags',
|
||||||
'../apps/testing',
|
'../apps/testing',
|
||||||
|
'../apps/theming',
|
||||||
'../apps/updatenotification',
|
'../apps/updatenotification',
|
||||||
'../apps/user_ldap',
|
'../apps/user_ldap',
|
||||||
|
'../build/integration/features/bootstrap',
|
||||||
'../core',
|
'../core',
|
||||||
'../lib',
|
'../lib',
|
||||||
'../ocs',
|
'../ocs',
|
||||||
|
|
Loading…
Reference in New Issue