butlerx
7 years ago
No known key found for this signature in database
GPG Key ID: B37CA765BAA89170
1 changed files with
5 additions and
1 deletions
-
lib/command.mjs
|
@ -16,7 +16,11 @@ export default ( |
|
|
'-o', |
|
|
'-o', |
|
|
`PreferredAuthentications=${auth}`, |
|
|
`PreferredAuthentications=${auth}`, |
|
|
], |
|
|
], |
|
|
user: localhost(host) || user !== '' || user.includes('@'), |
|
|
user: |
|
|
|
|
|
localhost(host) || |
|
|
|
|
|
user !== '' || |
|
|
|
|
|
user.includes('@') || |
|
|
|
|
|
address(headers, user, host).includes('@'), |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
function address(headers, user, host) { |
|
|
function address(headers, user, host) { |
|
|