Add a newline after banners to prevent ASCII art-style banners from getting messed up

This may also want to be done for shell greetings and banners.
This commit is contained in:
Dak Smyth 2019-07-20 18:17:42 -05:00 committed by GitHub
parent d922b2de1f
commit 122e68de04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -132,7 +132,7 @@ export class SSHService {
})
ssh.on('banner', banner => {
log('Banner: ' + banner)
log('Banner: \n' + banner)
})
let agent: string = null