diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-11-25 19:04:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-26 00:04:30 +0000 |
commit | 0c0af67f89b610eb61e4f66a5dbf665474aa9383 (patch) | |
tree | b2da2181d6ce10395da176ca8ac352345fc65fca /cli/tools/repl/mod.rs | |
parent | e0dd275935c49f5b5b844123d621c5dea1761983 (diff) |
refactor: `DenoDir` - move to cache folder and make `root_dir` private (#16823)
Diffstat (limited to 'cli/tools/repl/mod.rs')
-rw-r--r-- | cli/tools/repl/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/repl/mod.rs b/cli/tools/repl/mod.rs index 597b3ff5f..1cdb17ab1 100644 --- a/cli/tools/repl/mod.rs +++ b/cli/tools/repl/mod.rs @@ -89,7 +89,7 @@ pub async fn run( sync_sender: rustyline_channel.0, }; - let history_file_path = ps.dir.root.join("deno_history.txt"); + let history_file_path = ps.dir.repl_history_file_path(); let editor = ReplEditor::new(helper, history_file_path)?; if let Some(eval_files) = maybe_eval_files { |