From 8c3ab3e5d0003bab7c019da511b414c2b1ad8cf2 Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Thu, 18 Jul 2019 18:50:41 +0200
Subject: [PATCH] fix(git): platform-failure, not platform-error

---
 lib/platform/git/storage.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/platform/git/storage.ts b/lib/platform/git/storage.ts
index 96bafa256d..74cf575ea1 100644
--- a/lib/platform/git/storage.ts
+++ b/lib/platform/git/storage.ts
@@ -478,7 +478,7 @@ function checkForPlatformFailure(err: Error) {
   ];
   for (const errorStr of platformErrorStrings) {
     if (err.message.includes(errorStr)) {
-      throw new Error('platform-error');
+      throw new Error('platform-failure');
     }
   }
 }
-- 
GitLab