diff --git a/Assets/Scripts/Editor/GameEditor/FrameTool/HotFixWindow.cs b/Assets/Scripts/Editor/GameEditor/FrameTool/HotFixWindow.cs index 8b69f433df..133cdd62bf 100644 --- a/Assets/Scripts/Editor/GameEditor/FrameTool/HotFixWindow.cs +++ b/Assets/Scripts/Editor/GameEditor/FrameTool/HotFixWindow.cs @@ -481,6 +481,8 @@ namespace GameEditor.FrameTool File.Copy(fromPath + rf.fileName, toPath + rf.fileName, true); log.Add(rf.fileName); } + File.Copy(fromPath + UpdateConfigs.FILES, toPath + UpdateConfigs.FILES, true); + log.Add(UpdateConfigs.FILES); // write logf string logName = updateName.Replace("/", "$"); EditorUtility.DisplayProgressBar("正在生成Log文件:", logName, 1f); @@ -522,6 +524,8 @@ namespace GameEditor.FrameTool changeFile.Add(rf.fileName); log.Add(rf.fileName); } + changeFile.Add(UpdateConfigs.FILES); + log.Add(UpdateConfigs.FILES); // write ChangeList EditorUtility.DisplayProgressBar("正在生成文件变化列表", changeFileName, 1f); WriteLog(hfs.path_cdn_setting + "/__HotFixLog", changeFileName, changeFile.ToArray());