summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--buildstream/_ostree.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/buildstream/_ostree.py b/buildstream/_ostree.py
index 8d0b612c4..71c55d79e 100644
--- a/buildstream/_ostree.py
+++ b/buildstream/_ostree.py
@@ -308,6 +308,7 @@ def fetch_ssh(repo, remote, ref):
'--repo=' + repo.get_path().get_path(),
remote,
ref],
+ terminate=True,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT)
@@ -335,6 +336,7 @@ def push(repo, remote, ref):
'--repo=' + repo.get_path().get_path(),
remote,
ref],
+ terminate=True,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT)