Commit 51a43724 authored by Mattia Rizzolo's avatar Mattia Rizzolo

fix timeout command

Signed-off-by: Mattia Rizzolo's avatarMattia Rizzolo <mapreri@ubuntu.com>
parent c9e314fd
...@@ -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}" && timeout 10m -k 11m bzr pull -q) (cd "${dest}" && timeout -k 11m 10m 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