Skip to content
Snippets Groups Projects
Commit 7d9c38f9 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
This commit is part of merge request !52. Comments created here will be created in the context of that merge request.
import pathlib
import sys
from .context import DeliveryContext
from .finder import HeuristicProductFinder, ProductFinder
......@@ -50,5 +52,13 @@ class Delivery:
def main(args=None):
"""CLI entry point"""
context = DeliveryContext.parse_commandline(args)
#print(context)
Delivery().deliver(context)
response = ""
try:
link = Delivery().deliver(context)
if link != "":
response = link
except Exception as err:
response = "ERROR: " + str(err)
sys.stdout.write(response)
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