[bot] Update dist directory
Some checks failed
CI-check-and-unit-test / check-format-and-unit-test (push) Has been cancelled
CI-codeql / Analyze (push) Has been cancelled
CI-init-script-check / test-init-scripts (push) Has been cancelled
CI-integ-test-full / caching-integ-tests (push) Has been cancelled
CI-integ-test-full / other-integ-tests (push) Has been cancelled
CI-integ-test / build-distribution (push) Has been cancelled
CI-update-dist / update-dist (push) Has been cancelled
CI-integ-test / caching-integ-tests (push) Has been cancelled
CI-integ-test / other-integ-tests (push) Has been cancelled

This commit is contained in:
bigdaz 2024-11-12 18:29:16 +00:00 committed by github-actions[bot]
parent 48353a25ca
commit 4a0951b3dc
10 changed files with 55 additions and 20 deletions

View file

@ -182567,9 +182567,16 @@ async function recursivelyListFiles(baseDir) {
const childrenNames = await readdir(baseDir); const childrenNames = await readdir(baseDir);
const childrenPaths = await Promise.all(childrenNames.map(async (childName) => { const childrenPaths = await Promise.all(childrenNames.map(async (childName) => {
const childPath = path.resolve(baseDir, childName); const childPath = path.resolve(baseDir, childName);
return fs.lstatSync(childPath).isDirectory() const stat = fs.lstatSync(childPath, { throwIfNoEntry: false });
? recursivelyListFiles(childPath) if (stat === undefined) {
: new Promise(resolve => resolve([childPath])); return [];
}
else if (stat.isDirectory()) {
return recursivelyListFiles(childPath);
}
else {
return new Promise(resolve => resolve([childPath]));
}
})); }));
return Array.prototype.concat(...childrenPaths); return Array.prototype.concat(...childrenPaths);
} }

File diff suppressed because one or more lines are too long

View file

@ -135895,9 +135895,16 @@ async function recursivelyListFiles(baseDir) {
const childrenNames = await readdir(baseDir); const childrenNames = await readdir(baseDir);
const childrenPaths = await Promise.all(childrenNames.map(async (childName) => { const childrenPaths = await Promise.all(childrenNames.map(async (childName) => {
const childPath = path.resolve(baseDir, childName); const childPath = path.resolve(baseDir, childName);
return fs.lstatSync(childPath).isDirectory() const stat = fs.lstatSync(childPath, { throwIfNoEntry: false });
? recursivelyListFiles(childPath) if (stat === undefined) {
: new Promise(resolve => resolve([childPath])); return [];
}
else if (stat.isDirectory()) {
return recursivelyListFiles(childPath);
}
else {
return new Promise(resolve => resolve([childPath]));
}
})); }));
return Array.prototype.concat(...childrenPaths); return Array.prototype.concat(...childrenPaths);
} }

File diff suppressed because one or more lines are too long

View file

@ -182552,9 +182552,16 @@ async function recursivelyListFiles(baseDir) {
const childrenNames = await readdir(baseDir); const childrenNames = await readdir(baseDir);
const childrenPaths = await Promise.all(childrenNames.map(async (childName) => { const childrenPaths = await Promise.all(childrenNames.map(async (childName) => {
const childPath = path.resolve(baseDir, childName); const childPath = path.resolve(baseDir, childName);
return fs.lstatSync(childPath).isDirectory() const stat = fs.lstatSync(childPath, { throwIfNoEntry: false });
? recursivelyListFiles(childPath) if (stat === undefined) {
: new Promise(resolve => resolve([childPath])); return [];
}
else if (stat.isDirectory()) {
return recursivelyListFiles(childPath);
}
else {
return new Promise(resolve => resolve([childPath]));
}
})); }));
return Array.prototype.concat(...childrenPaths); return Array.prototype.concat(...childrenPaths);
} }

File diff suppressed because one or more lines are too long

View file

@ -182547,9 +182547,16 @@ async function recursivelyListFiles(baseDir) {
const childrenNames = await readdir(baseDir); const childrenNames = await readdir(baseDir);
const childrenPaths = await Promise.all(childrenNames.map(async (childName) => { const childrenPaths = await Promise.all(childrenNames.map(async (childName) => {
const childPath = path.resolve(baseDir, childName); const childPath = path.resolve(baseDir, childName);
return fs.lstatSync(childPath).isDirectory() const stat = fs.lstatSync(childPath, { throwIfNoEntry: false });
? recursivelyListFiles(childPath) if (stat === undefined) {
: new Promise(resolve => resolve([childPath])); return [];
}
else if (stat.isDirectory()) {
return recursivelyListFiles(childPath);
}
else {
return new Promise(resolve => resolve([childPath]));
}
})); }));
return Array.prototype.concat(...childrenPaths); return Array.prototype.concat(...childrenPaths);
} }

File diff suppressed because one or more lines are too long

View file

@ -126918,9 +126918,16 @@ async function recursivelyListFiles(baseDir) {
const childrenNames = await readdir(baseDir); const childrenNames = await readdir(baseDir);
const childrenPaths = await Promise.all(childrenNames.map(async (childName) => { const childrenPaths = await Promise.all(childrenNames.map(async (childName) => {
const childPath = path.resolve(baseDir, childName); const childPath = path.resolve(baseDir, childName);
return fs.lstatSync(childPath).isDirectory() const stat = fs.lstatSync(childPath, { throwIfNoEntry: false });
? recursivelyListFiles(childPath) if (stat === undefined) {
: new Promise(resolve => resolve([childPath])); return [];
}
else if (stat.isDirectory()) {
return recursivelyListFiles(childPath);
}
else {
return new Promise(resolve => resolve([childPath]));
}
})); }));
return Array.prototype.concat(...childrenPaths); return Array.prototype.concat(...childrenPaths);
} }

File diff suppressed because one or more lines are too long