File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed
Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -97,18 +97,19 @@ To build MyCMD you need:
9797---
9898
9999## 🛠️ Build Instructions
100+ Building MyCMD is simple and automated for both Windows 🪟 and Linux 🐧 platforms
100101
101102### 🔹 Windows
102103``` bash
103104scripts\b uild-windows.bat
104105```
105- 👆🏻 This will:
106+ 📦 This script will automatically :
106107
107- - Build the JAR with Maven
108+ 1.🧩 Build the JAR using Apache Maven
108109
109- - Wrap it into an .exe with Launch4j
110+ 2.⚙️ Wrap it into an .exe using Launch4j
110111
111- - Generate a setup.exe installer with Inno Setup
112+ 3.🪄 Generate a setup.exe installer via Inno Setup
112113
113114### Final Output
114115```
Original file line number Diff line number Diff line change @@ -92,6 +92,7 @@ private static void registerCommands(Map<String, Command> commands) {
9292 commands .put ("whoami" , new WhoamiCommand ());
9393 commands .put ("touch" , new TouchCommand ());
9494 commands .put ("time" , new TimeCommand ());
95+ commands .put ("tasklist" , new TasklistCommand ());
9596 commands .put ("tree" , new TreeCommand ());
9697 commands .put ("date" , new DateCommand ());
9798 commands .put ("history" , new HistoryCommand ());
@@ -105,6 +106,7 @@ private static void registerCommands(Map<String, Command> commands) {
105106 commands .put ("unalias" , new UnaliasCommand ());
106107 commands .put ("rename" , new RenameCommand ());
107108 commands .put ("set" , new SetCommand ());
108- commands .put ("tasklist" , new TasklistCommand ());
109- }
109+ }
110110}
111+
112+
You can’t perform that action at this time.
0 commit comments