1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 19:07:54 +01:00

redirect out

This commit is contained in:
Jason N. 2024-03-05 18:01:57 -05:00
parent 51c06b3aa8
commit b2ff453429

View file

@ -38,7 +38,7 @@ runcmd flatpak remote-add --user ${flatpak_remote_name} ${flatpak_remote_url}
runcmd mkdir -p ${root}/flatpak
runcmd ostree init --repo=${dest_repo} --mode=archive-z2
<%
cmd_result = subprocess.run(['ostree', 'refs', '--repo={0}'.format(flatpak_repo)])
cmd_result = subprocess.run(['ostree', 'refs', '--repo={0}'.format(flatpak_repo)], stdout=subprocess.PIPE)
found_refs = cmd_result.stdout.decode('utf-8').strip().split('\n')
%>
%for ref in found_refs: