mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-13 14:27:26 +08:00
🚸 添加发布工作流
This commit is contained in:
parent
502ccb46bb
commit
8ba50b7bd6
@ -69,6 +69,9 @@ def load_plugins(*plugin_dir: str) -> set[Plugin]:
|
|||||||
plugins = set()
|
plugins = set()
|
||||||
for dir_path in plugin_dir:
|
for dir_path in plugin_dir:
|
||||||
# 遍历每一个文件夹下的py文件和包含__init__.py的文件夹,不递归
|
# 遍历每一个文件夹下的py文件和包含__init__.py的文件夹,不递归
|
||||||
|
if not os.path.exists(dir_path):
|
||||||
|
logger.warning(f"Plugins dir '{dir_path}' does not exist.")
|
||||||
|
continue
|
||||||
for f in os.listdir(dir_path):
|
for f in os.listdir(dir_path):
|
||||||
path = Path(os.path.join(dir_path, f))
|
path = Path(os.path.join(dir_path, f))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user