fix: 修复扩展名称BUG

feature/item_system
胡宇飞 2024-01-08 11:47:35 +08:00
parent 058b65224c
commit de25d1ef2d
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ namespace Guru.Editor
{
var deployPath = Path.Combine(Application.dataPath, LocalServicesConfigPath);
if(!Directory.Exists(deployPath)) Directory.CreateDirectory(deployPath);
var path = Path.Combine(deployPath, $"{GuruSDK.ServicesConfigKey}.{LocalConfigExtension}");
var path = Path.Combine(deployPath, $"{GuruSDK.ServicesConfigKey}{LocalConfigExtension}");
var config = LoadConfig();
var from = SourceServiceFilePath;