2
0
Fork 0
mirror of https://github.com/ethauvin/bld.git synced 2025-04-25 16:27:11 -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
.idea/misc.xml generated
View file

@ -6,4 +6,4 @@
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" project-jdk-name="19" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build" />
</component>
</project>
</project>

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() {
if (!silent()) {
System.out.println("""
_ _ _
| | | | | |
| |__ | | __| |
| '_ \\| |/ _` |
| |_) | | (_| |
|_.__/|_|\\__,_|
""");
System.out.println("bld " + BldVersion.getVersion());
}
}