Skip to content

Commit

Permalink
Builtins Commands.less(): add configPath parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
mattirn committed Nov 28, 2020
1 parent a228123 commit 924d8ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion console/src/main/java/org/jline/console/impl/Builtins.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public void setLineReader(LineReader reader) {

private void less(CommandInput input) {
try {
Commands.less(input.terminal(), input.in(), input.out(), input.err(), workDir.get(), input.args());
Commands.less(input.terminal(), input.in(), input.out(), input.err(), workDir.get(), input.args(), configPath);
} catch (Exception e) {
saveException(e);
}
Expand Down

0 comments on commit 924d8ff

Please sign in to comment.