osbuild: print tree id and output id also in non-json mode

This commit is contained in:
Ondřej Budai 2019-10-02 14:33:27 +02:00
parent 3e57f13380
commit f9b2da9ad3

View file

@ -56,6 +56,9 @@ def main():
"output_id": pipeline.output_id,
}, sys.stdout)
sys.stdout.write("\n")
else:
print("tree id:", pipeline.tree_id)
print("output id:", pipeline.output_id)
return 0