Skip to content
Snippets Groups Projects
Unverified Commit 24f4e8ab authored by GyDi's avatar GyDi
Browse files

chore: fix check script

parent 1550d528
No related branches found
No related tags found
No related merge requests found
......@@ -270,7 +270,7 @@ const tasks = [
async function runTask() {
const task = tasks.shift();
if (!task) return;
if (task.winOnly && process.platform !== "win32") return;
if (task.winOnly && process.platform !== "win32") return runTask();
for (let i = 0; i < task.retry; i++) {
try {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment