Skip to content

Commit b51a60e

Browse files
committed
🚨 Fix Linting Issues
1 parent 125b369 commit b51a60e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/testUtils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ export interface BufferExecResult {
5959
signal?: string | null;
6060
}
6161

62-
export async function shellBufferExec(command: string, options: { stdin?: Buffer, cwd?: string } = {}): Promise<BufferExecResult> {
63-
const exec = await plainExec(options.cwd);
62+
export async function shellBufferExec(command: string, options: { stdin?: Buffer; cwd?: string } = {}): Promise<BufferExecResult> {
63+
const exec = plainExec(options.cwd);
6464
return runCommandNoPty({
6565
exec,
6666
cmd: '/bin/sh',

0 commit comments

Comments
 (0)