Skip to content

Commit 8e05478

Browse files
committedApr 23, 2024·
boulder: Always set manifest.bin build_release to 0
Resolves serpent-os/moss/#210 Signed-off-by: Rune Morling <ermo@serpentos.com>
1 parent bfb6549 commit 8e05478

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎boulder/src/package/emit/manifest/binary.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ pub fn write(path: &Path, packages: &BTreeSet<&Package>, build_deps: &BTreeSet<S
2020

2121
// Add each package
2222
for package in packages {
23-
let mut payload = package.meta().to_stone_payload();
23+
let mut meta = package.meta();
24+
// deliberately override .stone package metadata and set build_release to zero for binary manifests
25+
meta.build_release = 0;
26+
let mut payload = meta.to_stone_payload();
2427

2528
// Add build deps
2629
for name in build_deps {

0 commit comments

Comments
 (0)
Please sign in to comment.