1
0
Fork 0

Fixed typo introduced in recent fix

pull/7982/head
Markus Staab 2019-02-13 07:26:14 +01:00 committed by GitHub
parent f7f0a978bb
commit 0aa030f09d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ class Filesystem
// retry after a bit on windows since it tends to be touchy with mass removals
if (Platform::isWindows()) {
usleep(350000);
$deleted = !@rmdir($path);
$deleted = @rmdir($path);
}
if (!$deleted) {