Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
Co-authored-by: Anees Iqbal <hello@aneesiqbal.ai>
  • Loading branch information
kimbob13 and steelbrain authored Apr 18, 2024
1 parent 68edb7c commit cf01d4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ export class NodeSSH {
channel.on('close', () => {
let stdout = output.stdout.join('')
let stderr = output.stderr.join('')
if (options.noTrim === false) {
if (options.noTrim !== true) {
stdout = stdout.trim()
stderr = stderr.trim()
}
Expand Down

0 comments on commit cf01d4c

Please sign in to comment.