Skip to content

Commit aa17f0a

Browse files
authored
fix: trin version is incorrect (#1860)
1 parent b157344 commit aa17f0a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

crates/ethportal-api/build.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ fn main() -> Result<(), Box<dyn Error>> {
1010
.target_triple(true)
1111
.build()?;
1212
let git2 = Git2Builder::default()
13-
.describe(false, true, None)
14-
.dirty(true)
13+
.describe(
14+
/* tags= */ true, /* dirty= */ false, /* matches= */ None,
15+
)
1516
.sha(false)
1617
.build()?;
1718
let rustc = RustcBuilder::default().semver(true).build()?;

0 commit comments

Comments
 (0)