diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/cli/actions/commands/CleanBootCommand.java b/src/main/java/the/bytecode/club/bytecodeviewer/cli/actions/commands/CleanBootCommand.java index e74f7df2..1c28c7e4 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/cli/actions/commands/CleanBootCommand.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/cli/actions/commands/CleanBootCommand.java @@ -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..."); } } diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/cli/actions/commands/CleanCommand.java b/src/main/java/the/bytecode/club/bytecodeviewer/cli/actions/commands/CleanCommand.java index 9bb0b806..718ab8fe 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/cli/actions/commands/CleanCommand.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/cli/actions/commands/CleanCommand.java @@ -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..."); } }