(location: string)
| 581 | } |
| 582 | |
| 583 | export function createFileCommand(location: string) { |
| 584 | return `test ! -f '${location}' && set -o noclobber && mkdir -p '${path.posix.dirname(location)}' && { > '${location}' ; } 2> /dev/null`; |
| 585 | } |
| 586 | |
| 587 | export async function runRemoteCommand(params: { output: Log; onDidInput?: Event<string>; stdin?: NodeJS.ReadStream; stdout?: NodeJS.WriteStream; stderr?: NodeJS.WriteStream }, { remoteExec, remotePtyExec }: ContainerProperties, cmd: string[], cwd?: string, options: { remoteEnv?: NodeJS.ProcessEnv; pty?: boolean; print?: 'off' | 'continuous' | 'end' } = {}) { |
| 588 | const print = options.print || 'end'; |
no outgoing calls
no test coverage detected