2
0
Fork 0
mirror of https://github.com/ethauvin/bld.git synced 2025-04-26 00:37:10 -07:00

Merge pull request #10 from ethauvin/main

Added version ASCII art
This commit is contained in:
Geert Bevin 2023-09-14 07:04:26 -04:00 committed by GitHub
commit 8c21c2f909
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 2 deletions

2
core

@ -1 +1 @@
Subproject commit 29d66092169fc1682d008282ea37b61210f2fe1a Subproject commit e6872e1c927662eb5156700c6d81b483b75e383b

View file

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