Skip to content

Commit

Permalink
chore: why is it empty
Browse files Browse the repository at this point in the history
  • Loading branch information
bric3 committed Sep 18, 2023
1 parent 9968be7 commit e1ffe0a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
ignore-errors: [false]
ignore-errors: [true]
include:
- os: windows-latest
ignore-errors: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,10 @@ void figlet(
font = figletFont.font;
}

out.println(Figlet.render(stringToProcess, font));
String render = Figlet.render(stringToProcess, font);
out.println("😮‍💨🤨😞☹️😤: " + render.length());
out.println(render);
out.flush();
}

@Command(
Expand Down

0 comments on commit e1ffe0a

Please sign in to comment.