2
0
Fork 0
mirror of https://github.com/ethauvin/bld.git synced 2025-04-25 16:27:11 -07:00

Added version ASCII art

This commit is contained in:
Erik C. Thauvin 2023-09-13 10:04:39 -07:00
parent 743efa69e6
commit dfc402a9ee
4 changed files with 17 additions and 2 deletions

View file

@ -20,6 +20,14 @@ public class VersionOperation extends AbstractOperation<VersionOperation> {
*/
public void execute() {
if (!silent()) {
System.out.println("""
_ _ _
| | | | | |
| |__ | | __| |
| '_ \\| |/ _` |
| |_) | | (_| |
|_.__/|_|\\__,_|
""");
System.out.println("bld " + BldVersion.getVersion());
}
}