Skip to content

Commit a0d4e3b

Browse files
Merge branch 'main' into feat/Kaveesha/setCommand
2 parents fdd034c + 343f77e commit a0d4e3b

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff 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
103104
scripts\build-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
```

src/main/java/com/mycmd/App.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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+

0 commit comments

Comments
 (0)