mirror of https://github.com/actions/cache.git
Remove exit code
parent
0b0791e3bf
commit
aa08592228
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -60,6 +60,6 @@ async function run(): Promise<void> {
|
|||
}
|
||||
}
|
||||
|
||||
run().then(() => process.exit(0));
|
||||
run().then(() => process.exit());
|
||||
|
||||
export default run;
|
||||
|
|
|
@ -51,6 +51,6 @@ async function run(): Promise<void> {
|
|||
}
|
||||
}
|
||||
|
||||
run().then(() => process.exit(0));
|
||||
run().then(() => process.exit());
|
||||
|
||||
export default run;
|
||||
|
|
Loading…
Reference in New Issue