mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 09:31:22 -05:00
fix: full commit hash in canary compile download (#9166)
This commit is contained in:
parent
867ce78fb6
commit
cf3202644d
3 changed files with 3 additions and 5 deletions
|
@ -221,7 +221,7 @@ fn git_commit_hash() -> String {
|
|||
.output()
|
||||
{
|
||||
if output.status.success() {
|
||||
std::str::from_utf8(&output.stdout[..7])
|
||||
std::str::from_utf8(&output.stdout[..40])
|
||||
.unwrap()
|
||||
.to_string()
|
||||
} else {
|
||||
|
|
|
@ -40,9 +40,7 @@ pub async fn upgrade_command(
|
|||
let install_version = match version {
|
||||
Some(passed_version) => {
|
||||
let current_is_passed = if canary {
|
||||
let mut passed_hash = passed_version.clone();
|
||||
passed_hash.truncate(7);
|
||||
crate::version::GIT_COMMIT_HASH == passed_hash
|
||||
crate::version::GIT_COMMIT_HASH == passed_version
|
||||
} else if !crate::version::is_canary() {
|
||||
crate::version::deno() == passed_version
|
||||
} else {
|
||||
|
|
|
@ -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])
|
||||
})
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue