Commit a29c83b9 authored by Mattia Rizzolo's avatar Mattia Rizzolo

try again git-pull'ing if it fails

sometimes launchpad gives random HTTP errors...
Signed-off-by: Mattia Rizzolo's avatarMattia Rizzolo <mapreri@ubuntu.com>
parent 5c753f42
......@@ -11,7 +11,12 @@ build: full-config.ini
update: membri
cd membri && git pull --ff-only
# Launchpad can somtimes be flaky, so be forgiving and try again
cd membri && \
set -e; for i in 1 2 3 4; do \
git pull --ff-only && break; \
sleep 5; \
done
clean:
......
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