Commit f65fcaea authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Dont treat `git pull` non-zero exit as fatal

parent a8ffd874
......@@ -226,7 +226,7 @@ do
rm -rf varnish-trunk > /dev/null 2>&1 || true
git reset --hard > /dev/null 2>&1 || true
git clean -df > /dev/null 2>&1 || true
git pull > /dev/null 2>&1
git pull > /dev/null 2>&1 || true
)
rev=`cd "${SRCDIR}" && git show -s --pretty=format:%H`
if [ "x${rev}" != "x${orev}" ] ; then
......
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