From b36c67f6eb4f7a1fbba5a7287b0bf5723c7059b5 Mon Sep 17 00:00:00 2001 From: Konloch Date: Wed, 2 Oct 2024 19:41:37 -0600 Subject: [PATCH] CLI Clean Banner --- .../bytecodeviewer/cli/actions/commands/CleanBootCommand.java | 2 ++ .../club/bytecodeviewer/cli/actions/commands/CleanCommand.java | 2 ++ 2 files changed, 4 insertions(+) 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..."); } }