Skip to content

Commit a846a5c

Browse files
committed
changes why time
1 parent df2ee33 commit a846a5c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dist/setup/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106426,9 +106426,9 @@ function run() {
106426106426
core.setFailed(err.message);
106427106427
}
106428106428
core.debug('Before process exit');
106429-
setImmediate(() => {
106429+
setTimeout(() => {
106430106430
(0, why_is_node_running_1.default)();
106431-
});
106431+
}, 3000);
106432106432
// process.exit(0);
106433106433
});
106434106434
}

src/setup-python.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,9 +161,9 @@ async function run() {
161161
}
162162

163163
core.debug('Before process exit');
164-
setImmediate(() => {
164+
setTimeout(() => {
165165
why();
166-
});
166+
}, 3000);
167167
// process.exit(0);
168168
}
169169

0 commit comments

Comments
 (0)