修复开机自启bug

This commit is contained in:
yang 2022-10-16 08:47:54 +08:00
parent ae791dcd0a
commit 083226571d
1 changed files with 1 additions and 0 deletions

View File

@ -38,6 +38,7 @@ public class AutoStartFile {
fileContentJoiner.add(driveLetter); fileContentJoiner.add(driveLetter);
fileContentJoiner.add("cd " + ResourceUtils.getResourceByProject("")); fileContentJoiner.add("cd " + ResourceUtils.getResourceByProject(""));
fileContentJoiner.add("RoomIt"); fileContentJoiner.add("RoomIt");
fileContentJoiner.add("exit");
String fileContent = fileContentJoiner.toString(); String fileContent = fileContentJoiner.toString();
File startUpFile = new File(START_UP_FILE_PATH); File startUpFile = new File(START_UP_FILE_PATH);