fix: full commit hash in canary compile download (#9166)

This commit is contained in:
Luca Casonato 2021-01-19 13:53:23 +01:00 committed by GitHub
parent 867ce78fb6
commit cf3202644d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 5 deletions

View file

@ -6,7 +6,7 @@ pub const TYPESCRIPT: &str = env!("TS_VERSION");
pub fn deno() -> String {
let semver = env!("CARGO_PKG_VERSION");
option_env!("DENO_CANARY").map_or(semver.to_string(), |_| {
format!("{}+{}", semver, GIT_COMMIT_HASH)
format!("{}+{}", semver, &GIT_COMMIT_HASH[..7])
})
}