blob: 366b9d2e83961ab5792ecf6bcd9f21817671751d (
plain)
1
2
3
4
5
6
7
8
9
|
"""Formatter to extract the output files from pkg_deb."""
def format(target):
provider_map = providers(target)
return "\n".join([
provider_map["OutputGroupInfo"].out.to_list()[0].path,
provider_map["OutputGroupInfo"].deb.to_list()[0].path,
provider_map["OutputGroupInfo"].changes.to_list()[0].path,
])
|