mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 09:31:22 -05:00
fix(cli): show canary string in long version (#8675)
This commit is contained in:
parent
b5b7c7ee01
commit
b2bda57073
1 changed files with 5 additions and 1 deletions
|
@ -226,7 +226,11 @@ lazy_static! {
|
|||
static ref LONG_VERSION: String = format!(
|
||||
"{} ({}, {})\nv8 {}\ntypescript {}",
|
||||
crate::version::deno(),
|
||||
env!("PROFILE"),
|
||||
if crate::version::is_canary() {
|
||||
"canary"
|
||||
} else {
|
||||
env!("PROFILE")
|
||||
},
|
||||
env!("TARGET"),
|
||||
deno_core::v8_version(),
|
||||
crate::version::TYPESCRIPT
|
||||
|
|
Loading…
Add table
Reference in a new issue