Skip to content

Commit

Permalink
Update crates/katana/node/build.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
kariy authored Oct 28, 2024
1 parent 8c75a3e commit c41c885
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/katana/node/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ fn main() -> Result<(), Box<dyn Error>> {
// Emit the instructions
Emitter::default().add_instructions(&build)?.add_instructions(&gitcl)?.emit_and_set()?;

let sha = dbg!(env::var("VERGEN_GIT_SHA"))?;
let sha = env::var("VERGEN_GIT_SHA")?;
let is_dirty = env::var("VERGEN_GIT_DIRTY")? == "true";

// > git describe --always --tags
Expand Down

0 comments on commit c41c885

Please sign in to comment.