From fc98d5f036f0548e4345f0d0d047796ad1b64cf3 Mon Sep 17 00:00:00 2001
From: Nico Boehr <freifunk@nicoboehr.de>
Date: Fri, 25 Feb 2022 21:35:39 +0100
Subject: [PATCH] ci: do not requre git pull to succeed

---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0fd961448..80059add7 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -21,7 +21,7 @@ default:
     - mkdir -p ~/.ssh
     - cat gitlab-known-hosts >> ~/.ssh/known_hosts
     - test -d ffs-openwrt-dl-cache || git clone ssh://git@gitlab.freifunk-stuttgart.de:22220/firmware/ffs-openwrt-dl-cache.git
-    - git -C ffs-openwrt-dl-cache pull
+    - git -C ffs-openwrt-dl-cache pull || true
     - rm -rf gluon/openwrt/dl && mkdir -p gluon/openwrt && ln -s ../../ffs-openwrt-dl-cache gluon/openwrt/dl
     - rm -rf gluon/openwrt/staging_dir && mkdir -p staging_dir && ln -s ../../staging_dir gluon/openwrt/staging_dir
   after_script:
-- 
GitLab