Skip to content

Commit 825b04e

Browse files
committed
Fix recursiveCopy()
1 parent 641f36a commit 825b04e

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

bin/install.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,10 @@ private function unzip($filepath)
226226
*/
227227
private function recursiveCopy($src, $dst)
228228
{
229+
if ($src === false) {
230+
return;
231+
}
232+
229233
if (is_array($src)) {
230234
foreach ($src as $key => $source) {
231235
$this->recursiveCopy($source, $dst[$key]);

0 commit comments

Comments
 (0)