summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/@npmcli/git/lib/make-error.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/@npmcli/git/lib/make-error.js')
-rw-r--r--deps/npm/node_modules/@npmcli/git/lib/make-error.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/npm/node_modules/@npmcli/git/lib/make-error.js b/deps/npm/node_modules/@npmcli/git/lib/make-error.js
index 043a8e6e95..7540ec7c8b 100644
--- a/deps/npm/node_modules/@npmcli/git/lib/make-error.js
+++ b/deps/npm/node_modules/@npmcli/git/lib/make-error.js
@@ -1,7 +1,7 @@
const {
GitConnectionError,
GitPathspecError,
- GitUnknownError
+ GitUnknownError,
} = require('./errors.js')
const connectionErrorRe = new RegExp([
@@ -12,7 +12,7 @@ const connectionErrorRe = new RegExp([
'Failed to connect to .* Timed out',
'Connection reset by peer',
'SSL_ERROR_SYSCALL',
- 'The requested URL returned error: 503'
+ 'The requested URL returned error: 503',
].join('|'))
const missingPathspecRe = /pathspec .* did not match any file\(s\) known to git/