Skip to content
Snippets Groups Projects
Commit 8c3ab3e5 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix(git): platform-failure, not platform-error

parent 19e839fc
Branches
No related tags found
No related merge requests found
...@@ -478,7 +478,7 @@ function checkForPlatformFailure(err: Error) { ...@@ -478,7 +478,7 @@ function checkForPlatformFailure(err: Error) {
]; ];
for (const errorStr of platformErrorStrings) { for (const errorStr of platformErrorStrings) {
if (err.message.includes(errorStr)) { if (err.message.includes(errorStr)) {
throw new Error('platform-error'); throw new Error('platform-failure');
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment