Commit c9e314fd authored by Mattia Rizzolo's avatar Mattia Rizzolo

bzr has a tendency to just stall during some connection phases: be strong and kill it

Signed-off-by: Mattia Rizzolo's avatarMattia Rizzolo <mapreri@ubuntu.com>
parent a12d1130
...@@ -13,7 +13,7 @@ bzr_clone_repo() { ...@@ -13,7 +13,7 @@ bzr_clone_repo() {
if [[ ! -d "${dest}" ]]; then if [[ ! -d "${dest}" ]]; then
bzr branch "${url}" "${dest}" -q bzr branch "${url}" "${dest}" -q
else else
(cd "${dest}" && bzr pull -q) (cd "${dest}" && timeout 10m -k 11m bzr pull -q)
fi fi
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment