Skip to content

Commit

Permalink
Fixed history dir for consistency.
Browse files Browse the repository at this point in the history
  • Loading branch information
dstreev committed Dec 14, 2021
1 parent 7828ea3 commit d94a025
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ private Completer initCompleters(Environment env) {

private History initHistory() throws IOException {
File dir = new File(System.getProperty("user.home"), "."
+ this.getName());
+ "hadoop-cli");
if (dir.exists() && dir.isFile()) {
throw new IllegalStateException(
"Default configuration file exists and is not a directory: "
Expand Down

0 comments on commit d94a025

Please sign in to comment.