Skip to content

Commit

Permalink
Merge pull request #10 from ethauvin/main
Browse files Browse the repository at this point in the history
Added version ASCII art
  • Loading branch information
gbevin authored Sep 14, 2023
2 parents 743efa6 + a5c89df commit 8c21c2f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions src/main/java/rife/bld/operations/VersionOperation.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ public class VersionOperation extends AbstractOperation<VersionOperation> {
*/
public void execute() {
if (!silent()) {
System.out.println("""
_ _ _
| | | | | |
| |__ | | __| |
| '_ \\| |/ _` |
| |_) | | (_| |
|_.__/|_|\\__,_|
""");
System.out.println("bld " + BldVersion.getVersion());
}
}
Expand Down

0 comments on commit 8c21c2f

Please sign in to comment.