Skip to content

Commit

Permalink
fix testNamespaceExportImport on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
vdiskg committed Feb 2, 2024
1 parent 921af84 commit 8ff37a9
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 8ff37a9

Please sign in to comment.