Skip to content

Commit

Permalink
chore: update comment to point to upstream issue
Browse files Browse the repository at this point in the history
Signed-off-by: Wei Zhang <[email protected]>
  • Loading branch information
zwpaper committed Jan 26, 2025
1 parent 38fd4e8 commit 6bdbf74
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/tabby/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ fn main() -> Result<(), Box<dyn Error>> {
EmitBuilder::builder()
.all_build()
.all_git()
.git_describe(false, true, None) // TODO(kweizh): use correct match pattern in v0.25.0
// TODO(kweizh): we encounter a issue with match_pattern in vergen on Windows
// will add the match_pattern back when the issue is resolved
// ref: https://github.com/rustyhorde/vergen/issues/402
.git_describe(false, true, None)
.emit()?;
Ok(())
}

0 comments on commit 6bdbf74

Please sign in to comment.