dengsixing 6 月之前
父節點
當前提交
c94220e66b
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/main/java/com/fdkankan/contro/service/impl/HaixinServiceImpl.java

+ 1 - 1
src/main/java/com/fdkankan/contro/service/impl/HaixinServiceImpl.java

@@ -123,7 +123,7 @@ public class HaixinServiceImpl implements IHaixinService {
 
     private void zip(String sourcePath, String zipPath) throws Exception {
         FileUtil.mkParentDirs(zipPath);
-        String cmd = "cd " + sourcePath + " && zip -r -s 2048M" + zipPath + " *";//&& mv -f " + zipPath + " "  + target
+        String cmd = "cd " + sourcePath + " && zip -r -s 2048M " + zipPath + " *";//&& mv -f " + zipPath + " "  + target
         CmdUtils.callLineSh(cmd, 200);
     }
 }