From 7566dc6356e2ab1d17688f912210df58afca5bde Mon Sep 17 00:00:00 2001 From: Peter Dahlberg Date: Tue, 14 Jun 2016 16:35:50 +0200 Subject: [PATCH] we only try to kill --- pelican_deploy/deploy.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pelican_deploy/deploy.py b/pelican_deploy/deploy.py index 898a03f..49605dc 100644 --- a/pelican_deploy/deploy.py +++ b/pelican_deploy/deploy.py @@ -143,7 +143,10 @@ class DeploymentRunner: proc = self._build_proc self._abort = True if proc: - proc.kill() + try: + proc.kill() + except: + log.debug("unable to kill", exc_info=True) def final_install(self): args = shlex.split(self.final_install_command)