From e117c904c7e88f142614dbcd569e8fa4a7f49988 Mon Sep 17 00:00:00 2001 From: Randy Barlow Date: Thu, 12 Oct 2017 16:39:41 -0400 Subject: [PATCH] Raise the Exception when a symlink cannot be created. Signed-off-by: Randy Barlow --- bin/pungi-koji | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/pungi-koji b/bin/pungi-koji index 3456cb6a..78f714fa 100755 --- a/bin/pungi-koji +++ b/bin/pungi-koji @@ -450,6 +450,7 @@ def run_compose(compose, create_latest_link=True, latest_link_status=None): os.symlink(compose_dir, symlink) except Exception as ex: compose.log_error("Couldn't create latest symlink: %s" % ex) + raise compose.log_info("Compose finished: %s" % compose.topdir)