From 9adaa316050e3eed971fe316eb545ba74c562cca Mon Sep 17 00:00:00 2001
From: Micah Anderson <micah@riseup.net>
Date: Tue, 4 Jul 2017 12:00:20 -0700
Subject: [PATCH] Fix upgrade_test failure.

See https://0xacab.org/leap/platform/-/jobs/14029 for an example.
---
 tests/platform-ci/ci-build.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tests/platform-ci/ci-build.sh b/tests/platform-ci/ci-build.sh
index 9332c12c..1c9cc416 100755
--- a/tests/platform-ci/ci-build.sh
+++ b/tests/platform-ci/ci-build.sh
@@ -146,7 +146,8 @@ upgrade_test() {
   # Checkout stable branch containing last release
   # and deploy this
   cd "$PLATFORMDIR"
-  git remote add leap https://leap.se/git/leap_platform
+  # due to cache, this remote is sometimes already added
+  git remote add leap https://leap.se/git/leap_platform || true
   git fetch leap
   git checkout -b leap_stable remotes/leap/stable
   # After checking out a different platform branch
-- 
GitLab