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 86557b2 commit 6c3f3d0Copy full SHA for 6c3f3d0
src/runtime/SSHRuntime.ts
@@ -105,9 +105,7 @@ export class SSHRuntime implements Runtime {
105
}
106
107
// Wrap in bash -c with shescape for safe shell execution
108
- const remoteCommand = options.timeout
109
- ? fullCommand
110
- : `bash -c ${shescape.quote(fullCommand)}`;
+ const remoteCommand = options.timeout ? fullCommand : `bash -c ${shescape.quote(fullCommand)}`;
111
112
// Build SSH args
113
const sshArgs: string[] = ["-T"];
0 commit comments