From 5617db4e42c5a778b609a13519091c922ad92831 Mon Sep 17 00:00:00 2001 From: Anyon Date: Mon, 24 Aug 2020 13:11:05 +0800 Subject: [PATCH] Update InstallService.php --- vendor/zoujingli/think-library/src/service/InstallService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/zoujingli/think-library/src/service/InstallService.php b/vendor/zoujingli/think-library/src/service/InstallService.php index 38da79168..40d3b6c2b 100644 --- a/vendor/zoujingli/think-library/src/service/InstallService.php +++ b/vendor/zoujingli/think-library/src/service/InstallService.php @@ -188,7 +188,7 @@ class InstallService extends Service */ private function _scanList($path, $data = []): array { - foreach (NodeService::instance()->scanDirectory($path) as $file) { + foreach (NodeService::instance()->scanDirectory($path, [], null) as $file) { $data[] = $this->_getInfo(strtr($file, '\\', '/')); } return $data;