We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59387ca commit afadab1Copy full SHA for afadab1
lib/src/assemble/manifest.rs
@@ -461,8 +461,11 @@ impl<'a> FakeDataAttributes<'a> {
461
};
462
463
let caboose = {
464
+ // We use a fake git commit that contains `self.kind` to ensure that
465
+ // the artifacts we produce are distinct for each `kind`, even if
466
+ // all the other caboose fields are identical.
467
let mut builder = CabooseBuilder::default()
- .git_commit("this-is-fake-data")
468
+ .git_commit(format!("this-is-a-fake-{}", self.kind))
469
.board(board)
470
.name(board)
471
.version(self.version.to_string());
0 commit comments