From 9a588a17b26214703d7c7594c8fcf700bf036eef Mon Sep 17 00:00:00 2001 From: Daniel Jilg Date: Thu, 4 Jul 2019 11:03:24 +0200 Subject: [PATCH] Pin MappaMundi commit The Cartfile we inherited from Firefox contains this line: `github "mozilla-mobile/MappaMundi" "master"` recently, MappaMundi was [updated to use the A-Star project](https://github.com/mozilla-mobile/MappaMundi/pull/17) for pathfinding. This project, however, needs Swift 5. Hence, the build is broken. To fix, pin the MappaMundi version to a commit before they introduce the A-Star algorithm. --- Cartfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cartfile b/Cartfile index 89029976b..841d52f64 100644 --- a/Cartfile +++ b/Cartfile @@ -16,4 +16,5 @@ github "farhanpatel/JSONSchema.swift" "master" # Cliqz: Disable FireFox Telemetry & EarlyGray # github "st3fan/EarlGrey" "master" # github "mozilla-mobile/telemetry-ios" "v1.1.0" -github "mozilla-mobile/MappaMundi" "master" +# Cliqz: Pinning MappaMundi to a specific commit because newer versions require A-Star, which requires Swift 5 +github "mozilla-mobile/MappaMundi" "02b6f0b404d0a7178c47c073550936016f42981e"