mirror of
https://github.com/easingthemes/ssh-deploy.git
synced 2025-04-29 11:20:42 -04:00
fix: remove spaces on PubkeyAcceptedKeyTypes
This commit is contained in:
parent
560607e336
commit
6b4e65c1e8
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ const defaultOptions = {
|
||||||
sshCmdArgs: [
|
sshCmdArgs: [
|
||||||
'-o StrictHostKeyChecking=no',
|
'-o StrictHostKeyChecking=no',
|
||||||
`-o HostKeyAlgorithms=${REMOTE_KEY_TYPES || '+ssh-rsa'}`,
|
`-o HostKeyAlgorithms=${REMOTE_KEY_TYPES || '+ssh-rsa'}`,
|
||||||
`-o PubkeyAcceptedKeyTypes = ${REMOTE_KEY_TYPES || '+ssh-rsa'}`
|
`-o PubkeyAcceptedKeyTypes=${REMOTE_KEY_TYPES || '+ssh-rsa'}`
|
||||||
],
|
],
|
||||||
recursive: true
|
recursive: true
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue