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 125b369 commit b51a60eCopy full SHA for b51a60e
src/test/testUtils.ts
@@ -59,8 +59,8 @@ export interface BufferExecResult {
59
signal?: string | null;
60
}
61
62
-export async function shellBufferExec(command: string, options: { stdin?: Buffer, cwd?: string } = {}): Promise<BufferExecResult> {
63
- const exec = await plainExec(options.cwd);
+export async function shellBufferExec(command: string, options: { stdin?: Buffer; cwd?: string } = {}): Promise<BufferExecResult> {
+ const exec = plainExec(options.cwd);
64
return runCommandNoPty({
65
exec,
66
cmd: '/bin/sh',
0 commit comments