Skip to content
Snippets Groups Projects
Commit dcea1998 authored by Reid Givens's avatar Reid Givens Committed by Nathan Hertz
Browse files

passing the destination link back via stdout on completion

parent 554fce62
No related branches found
No related tags found
1 merge request!52passing the destination link back via stdout on completion
Pipeline #426 passed
...@@ -50,5 +50,9 @@ class Delivery: ...@@ -50,5 +50,9 @@ class Delivery:
def main(args=None): def main(args=None):
"""CLI entry point""" """CLI entry point"""
context = DeliveryContext.parse_commandline(args) context = DeliveryContext.parse_commandline(args)
#print(context) try:
Delivery().deliver(context) print(Delivery().deliver(context))
except Exception as err:
print("ERROR: " + str(err))
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