CLI Clean Banner

This commit is contained in:
Konloch 2024-10-02 19:41:37 -06:00
parent 5398cdaea0
commit b36c67f6eb

AI 샘플 코드 생성 중입니다

Loading...
2 changed files with 4 additions and 0 deletions

View File

@ -22,5 +22,7 @@ public class CleanBootCommand extends CLICommand
public void runCommand(CommandLine cmd)
{
new File(Constants.getBCVDirectory()).delete();
System.out.println("BCV Directory Deleted - Continuing to GUI...");
}
}

View File

@ -24,5 +24,7 @@ public class CleanCommand extends CLICommand
public void runCommand(CommandLine cmd)
{
new File(Constants.getBCVDirectory()).delete();
System.out.println("BCV Directory Deleted - Exiting...");
}
}