Skip to content

Commit

Permalink
chore(build): temporarily disable the tags pattern match to resolve a… (
Browse files Browse the repository at this point in the history
#3761)

* chore(build): temporarily disable the tags pattern match to resolve a version issue on Windows

Signed-off-by: Wei Zhang <[email protected]>

* chore: update comment to point to upstream issue

Signed-off-by: Wei Zhang <[email protected]>

---------

Signed-off-by: Wei Zhang <[email protected]>
  • Loading branch information
zwpaper committed Jan 26, 2025
1 parent 23faaf9 commit 324b91d
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, Some("v*"))
// 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 324b91d

Please sign in to comment.