Fix Default Parameter Problem (#5)

This commit is contained in:
Amir Pourmand 2023-10-02 18:22:28 +03:30 committed by GitHub
parent 1ca67f5c1a
commit a120d8dc24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);