1
0
Fork 0
mirror of https://github.com/actions/cache.git synced 2025-07-07 20:42:53 +00:00

Remove exit code

This commit is contained in:
Dave Hadka 2020-07-14 12:56:41 -05:00
parent 0b0791e3bf
commit aa08592228
4 changed files with 8584 additions and 97238 deletions

View file

@ -51,6 +51,6 @@ async function run(): Promise<void> {
}
}
run().then(() => process.exit(0));
run().then(() => process.exit());
export default run;