Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
GitHub Mirror
Nextcloud
server
Commits
cb621f37
Unverified
Commit
cb621f37
authored
Feb 22, 2022
by
Côme Chilliet
Committed by
GitHub
Feb 22, 2022
Browse files
Merge pull request #31309 from nextcloud/fix/fix-checkers-php-error
Avoid PHP errors in the checkers drone step
parents
5b565a47
6f37eac4
Changes
1
Hide whitespace changes
Inline
Side-by-side
build/triple-dot-checker.php
View file @
cb621f37
...
...
@@ -32,7 +32,7 @@ foreach ($directories as $dir) {
$it
=
new
\
RecursiveDirectoryIterator
(
$dir
);
foreach
(
new
RecursiveIteratorIterator
(
$it
)
as
$file
)
{
if
(
$file
->
getExtension
()
===
'map'
)
{
if
(
(
$file
->
getExtension
()
===
'map'
)
||
$file
->
isDir
())
{
continue
;
}
$content
=
file_get_contents
(
$file
->
getPathname
());
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment