From a575041d3c333f09cac778ddc4e77d62a8341b5f Mon Sep 17 00:00:00 2001 From: hezhengyi Date: Sat, 21 Sep 2024 15:21:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=B7=AF=E5=BE=84=E6=8B=BC?= =?UTF-8?q?=E6=8E=A5=E9=80=BB=E8=BE=91,=E6=94=B9=E5=96=84Windows=E7=8E=AF?= =?UTF-8?q?=E5=A2=83=E5=8F=AF=E8=83=BD=E5=87=BA=E7=8E=B0=E7=9A=84=E8=B7=AF?= =?UTF-8?q?=E5=BE=84=E9=95=BF=E5=BA=A6>=3D260=E7=9A=84=E6=83=85=E5=86=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: hezhengyi --- packages/flutter_tools/lib/src/ohos/application_package.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/flutter_tools/lib/src/ohos/application_package.dart b/packages/flutter_tools/lib/src/ohos/application_package.dart index 8661f777e8..aad92515af 100644 --- a/packages/flutter_tools/lib/src/ohos/application_package.dart +++ b/packages/flutter_tools/lib/src/ohos/application_package.dart @@ -273,6 +273,7 @@ class OhosModule { required String modulePath, String? flavor, }) { + modulePath = globals.fs.path.normalize(modulePath); final String moduleJsonPath = globals.fs.path.join(modulePath, 'src', 'main', 'module.json5'); final File moduleJsonFile = globals.fs.file(moduleJsonPath); -- Gitee