Skip to content

Commit 6c3f3d0

Browse files
committed
🤖 Fix formatting
1 parent 86557b2 commit 6c3f3d0

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/runtime/SSHRuntime.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,7 @@ export class SSHRuntime implements Runtime {
105105
}
106106

107107
// Wrap in bash -c with shescape for safe shell execution
108-
const remoteCommand = options.timeout
109-
? fullCommand
110-
: `bash -c ${shescape.quote(fullCommand)}`;
108+
const remoteCommand = options.timeout ? fullCommand : `bash -c ${shescape.quote(fullCommand)}`;
111109

112110
// Build SSH args
113111
const sshArgs: string[] = ["-T"];

0 commit comments

Comments
 (0)