fix: normalize path separators in build script for Windows

This commit is contained in:
zetaloop
2026-04-23 00:31:36 +08:00
parent 6f2773273e
commit e1f05d01ab
+1
View File
@@ -61,6 +61,7 @@ CMD ["./main"]
targets = {} targets = {}
for service_dir in sorted(glob.glob("app/*/*")): for service_dir in sorted(glob.glob("app/*/*")):
service_dir = service_dir.replace("\\", "/")
service_type = os.path.basename(service_dir) service_type = os.path.basename(service_dir)
if service_type not in ("api", "rpc", "mq", "adapter"): if service_type not in ("api", "rpc", "mq", "adapter"):
continue continue