From cd39d860d4667b97747ec295baf21e6cbfd16716 Mon Sep 17 00:00:00 2001 From: Nulo Date: Fri, 17 Feb 2023 14:31:05 -0300 Subject: [PATCH] limpiar repro-run --- helpers/repro-run.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/helpers/repro-run.ts b/helpers/repro-run.ts index 9f60f38..84c5e19 100644 --- a/helpers/repro-run.ts +++ b/helpers/repro-run.ts @@ -1,6 +1,5 @@ import { chmod, mkdir, readFile, writeFile } from "node:fs/promises"; import { join } from "node:path"; -import { Writable } from "node:stream"; import { execFile } from "./better-api.js"; export async function reproRun(opts: { @@ -8,7 +7,7 @@ export async function reproRun(opts: { // cache/ and rootfs/ cwd: string; command: string; - cache: string[]; + cache?: string[]; }): Promise { const run = execFile("repro-run", { cwd: opts.cwd }); if (!run.child.stdin) throw false;