Skip to content
Snippets Groups Projects
Commit f2826cd4 authored by Simon McVittie's avatar Simon McVittie
Browse files

build-relocatable-install: Include a list of source packages involved

parent 1771f5c6
No related branches found
No related tags found
No related merge requests found
......@@ -427,6 +427,15 @@ def main():
cwd=os.path.join(installation, 'sources'),
)
with open(
os.path.join(installation, 'sources', 'sources.txt'), 'w'
) as writer:
writer.write(
'#Source\t#Version\n'
)
for source in sorted(source_to_download):
writer.write(source.replace('=', '\t') + '\n')
if not args.apt_get_source:
os.makedirs(
os.path.join(installation, 'sources', 'pressure-vessel'),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment