瀏覽代碼

单词命名规范化

JustryDeng 4 年之前
父節點
當前提交
8143c582ff
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      class-winter-core/src/main/java/winter/com/ideaaedi/classwinter/util/BashUtil.java

+ 1 - 1
class-winter-core/src/main/java/winter/com/ideaaedi/classwinter/util/BashUtil.java

@@ -146,7 +146,7 @@ public final class BashUtil {
         BufferedReader bufferedReader = null;
         StringBuilder sb = new StringBuilder(64);
         try {
-            File tmpBatFile = new File("/mp_" + System.currentTimeMillis() + ".bat");
+            File tmpBatFile = new File("/tmp_" + System.currentTimeMillis() + ".bat");
             IOUtil.writeContentToFile(batContent, tmpBatFile);
             process = Runtime.getRuntime().exec(tmpBatFile.getAbsolutePath());
             inputStream = process.getInputStream();