Merge pull request #4441 from gsdevme/hotfix/ensure-the-directory-exists-before
Ensure the bin directory exists before checking emptypull/4444/head
commit
1409e32037
|
@ -268,7 +268,7 @@ class LibraryInstaller implements InstallerInterface
|
||||||
}
|
}
|
||||||
|
|
||||||
// attempt removing the bin dir in case it is left empty
|
// attempt removing the bin dir in case it is left empty
|
||||||
if ($this->filesystem->isDirEmpty($this->binDir)) {
|
if ((is_dir($this->binDir)) && ($this->filesystem->isDirEmpty($this->binDir))) {
|
||||||
@rmdir($this->binDir);
|
@rmdir($this->binDir);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue