Skip to content

Commit 9f996f8

Browse files
authored
Merge pull request #516 from nextcloud/feat/fix-iterators
Improve iterators
2 parents e73aa39 + 0c05ada commit 9f996f8

18 files changed

Lines changed: 297 additions & 350 deletions

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ updater.phar: updater.php lib/*.php buildVersionFile.php
1212
clean:
1313
rm updater.phar index.php
1414

15-
index.php: lib/UpdateException.php lib/LogException.php lib/RecursiveDirectoryIteratorWithoutData.php lib/Updater.php index.web.php
15+
index.php: lib/UpdateException.php lib/LogException.php lib/Updater.php index.web.php
1616
# First put openining php tag and license
1717
awk '/^<\?php$$/,/\*\//' index.web.php > index.php
1818
# Then concat all files while filtering php tag and license
19-
cat lib/UpdateException.php lib/LogException.php lib/RecursiveDirectoryIteratorWithoutData.php lib/Updater.php index.web.php| grep -v "^namespace" | awk '/^<\?php$$/,/\*\//{next} 1' >> index.php
19+
cat lib/UpdateException.php lib/LogException.php lib/Updater.php index.web.php| grep -v "^namespace" | awk '/^<\?php$$/,/\*\//{next} 1' >> index.php
2020

2121
test/vendor:
2222
cd tests && composer install

0 commit comments

Comments
 (0)