Skip to content

Commit

Permalink
fix testNamespaceExportImport on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
vdiskg authored and nobodyiam committed Feb 3, 2024
1 parent c90c930 commit b199d82
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public void importDataFromZipFile(List<Env> importEnvs, ZipInputStream dataZip,
String filePath = entry.getName();
String content = readContent(dataZip);

String[] info = filePath.split("/");
String[] info = filePath.replace('\\', '/').split("/");

String fileName;
if (info.length == 1) {
Expand Down

0 comments on commit b199d82

Please sign in to comment.