diff options
author | crowlKats <13135287+crowlKats@users.noreply.github.com> | 2020-11-25 11:30:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-25 05:30:14 -0500 |
commit | a08d2eee2b4adf0cdf6d9c8a475beff6ee1df29b (patch) | |
tree | 40bea60c844636782a2364af632243e16d8db834 /cli/tools/repl.rs | |
parent | 8d12653738066facfc228b1d0d9e31b76c6d9de0 (diff) |
add canary versioning (#8480)
Diffstat (limited to 'cli/tools/repl.rs')
-rw-r--r-- | cli/tools/repl.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/repl.rs b/cli/tools/repl.rs index be85dc813..e6a2fd709 100644 --- a/cli/tools/repl.rs +++ b/cli/tools/repl.rs @@ -467,7 +467,7 @@ pub async fn run( .load_history(history_file.to_str().unwrap()) .unwrap_or(()); - println!("Deno {}", crate::version::DENO); + println!("Deno {}", crate::version::deno()); println!("exit using ctrl+d or close()"); inject_prelude(&mut worker, &mut session, context_id).await?; |