Skip to content

Commit 8d57f91

Browse files
committed
🤖 Fix formatting
1 parent a8893a8 commit 8d57f91

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
@@ -104,9 +104,7 @@ export class SSHRuntime implements Runtime {
104104
}
105105

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

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

0 commit comments

Comments
 (0)