We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8893a8 commit 8d57f91Copy full SHA for 8d57f91
src/runtime/SSHRuntime.ts
@@ -104,9 +104,7 @@ export class SSHRuntime implements Runtime {
104
}
105
106
// Wrap in bash -c with shescape for safe shell execution
107
- const remoteCommand = options.timeout
108
- ? fullCommand
109
- : `bash -c ${shescape.quote(fullCommand)}`;
+ const remoteCommand = options.timeout ? fullCommand : `bash -c ${shescape.quote(fullCommand)}`;
110
111
// Build SSH args
112
const sshArgs: string[] = ["-T"];
0 commit comments