Skip to content

Commit 310ef40

Browse files
committedOct 20, 2021
buildfetch: also grab commitmeta.json
It's useful for a few reasons, one of which is if you want to start doing local builds again after doing a buildfetch the commitmeta.json is consulted when the tooling tries to prune things.
1 parent ff48f1d commit 310ef40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/cmd-buildfetch

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def main():
107107
assert builddir.startswith("builds/")
108108
builddir = builddir[len("builds/"):]
109109

110-
objects = ['meta.json', 'ostree-commit-object']
110+
objects = ['meta.json', 'commitmeta.json', 'ostree-commit-object']
111111
for f in objects:
112112
fetcher.fetch(f'{builddir}/{f}')
113113

0 commit comments

Comments
 (0)
Please sign in to comment.