Skip to content

Commit

Permalink
[client] fix the bug that the windows client makes broken exported file.
Browse files Browse the repository at this point in the history
  • Loading branch information
gunlee01 committed Mar 31, 2018
1 parent de47511 commit 35b449c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scouter.client/src/scouter/client/util/ZipUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ private static void compressZip(File file, String root, ZipOutputStream zos) thr
FileInputStream fis = null;
try {
String zipName = file.getPath().replace(root + "\\", "");
zipName = file.getPath().replace(root + "/", "");
zipName = zipName.replace(root + "/", "");

System.out.println("zipname:" + zipName);
// 파일을 읽어드림
Expand Down

0 comments on commit 35b449c

Please sign in to comment.