@@ -5,18 +5,18 @@ |
||
5 | 5 | * SPDX-License-Identifier: AGPL-3.0-or-later |
6 | 6 | */ |
7 | 7 | |
8 | -require_once __DIR__ . '/../lib/base.php'; |
|
8 | +require_once __DIR__.'/../lib/base.php'; |
|
9 | 9 | |
10 | 10 | function enableApp($app) { |
11 | 11 | (new \OC_App())->enable($app); |
12 | 12 | echo "Enabled application {$app}\n"; |
13 | 13 | } |
14 | 14 | |
15 | -foreach (new \DirectoryIterator(__DIR__ . '/../apps/') as $file) { |
|
15 | +foreach (new \DirectoryIterator(__DIR__.'/../apps/') as $file) { |
|
16 | 16 | if ($file->isDot()) { |
17 | 17 | continue; |
18 | 18 | } |
19 | - if (!file_exists($file->getPathname() . '/.git')) { |
|
19 | + if (!file_exists($file->getPathname().'/.git')) { |
|
20 | 20 | enableApp($file->getFilename()); |
21 | 21 | } |
22 | 22 | } |