From a120d8dc24e57c7fe6661bb732813e1c12d6ab8e Mon Sep 17 00:00:00 2001 From: Amir Pourmand Date: Mon, 2 Oct 2023 18:22:28 +0330 Subject: [PATCH] Fix Default Parameter Problem (#5) --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 141edbc..c94979f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -126,7 +126,7 @@ async function run() { core.info(`slim on target: ${inputTarget}`); - await shell.exec('slim', ['b', '--target', inputTarget, '--continue-after', '1'], {cwd: SLIM_PATH}); + await shell.exec('slim', ['b', '--target', inputTarget], {cwd: SLIM_PATH}); const data = fs.readFileSync(path.join(SLIM_PATH, 'slim.report.json')); const report = JSON.parse(data);