Skip to content

Commit

Permalink
pipeline(build): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Fedotov committed Apr 14, 2024
1 parent d78f171 commit e31553a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions compiler/hash-pipeline/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ static BUILD_DIR: &str = env!("CARGO_MANIFEST_DIR");

fn main() {
inline_stdlib_info();
inline_compuler_info();
inline_compiler_info();
}

/// Compute the path to the standard library and inline it into the build of
Expand All @@ -25,9 +25,9 @@ fn inline_stdlib_info() {
}

/// Compute the version of the compiler and inline it into the build of the
/// compiler. The version incluces the version of the `hash` crate, and the git
/// compiler. The version includes the version of the `hash` crate, and the git
/// revision hash of the compiler itself.
fn inline_compuler_info() {
fn inline_compiler_info() {
let git_hash = String::from_utf8(
std::process::Command::new("git")
.args(["rev-parse", "HEAD"])
Expand Down

0 comments on commit e31553a

Please sign in to comment.