Merge pull request #464 from HuangKunInkess/master

fix: bug修复,迁移脚本目录创建错误,导致docker找不到目录,boostrap改为bootstrap
This commit is contained in:
Jerry Z H
2025-10-22 16:19:02 +08:00
committed by GitHub

View File

@@ -15,8 +15,8 @@ from ruamel.yaml import YAML
def create_directory_structure(base_path):
"""Create new directory structure"""
directories = [
'boostrap/intelligence',
'boostrap/platform',
'bootstrap/intelligence',
'bootstrap/platform',
'intelligence/agentic/agent/agent_instance',
'intelligence/agentic/agent/agent_template',
'intelligence/agentic/knowledge/store',
@@ -198,11 +198,11 @@ def migrate_files(source_root, target_root):
},
{
'source': 'app/bootstrap/server_application.py',
'target': 'boostrap/intelligence'
'target': 'bootstrap/intelligence'
},
{
'source': 'app/bootstrap/server_application.py',
'target': 'boostrap/intelligence'
'target': 'bootstrap/intelligence'
},
]