Skip to content
Snippets Groups Projects

passing the destination link back via stdout on completion

Merged Reid Givens requested to merge SSA-6398-post-delivery into main
All threads resolved!
1 file
+ 12
2
Compare changes
  • Side-by-side
  • Inline
@@ -50,5 +50,9 @@ class Delivery:
def main(args=None):
"""CLI entry point"""
context = DeliveryContext.parse_commandline(args)
#print(context)
Delivery().deliver(context)
try:
print(Delivery().deliver(context))
except Exception as err:
print("ERROR: " + str(err))
Loading