mirror of
https://github.com/gradle/actions
synced 2024-11-23 18:02:13 +00:00
[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
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:
parent
48353a25ca
commit
4a0951b3dc
10 changed files with 55 additions and 20 deletions
13
dist/dependency-submission/main/index.js
vendored
13
dist/dependency-submission/main/index.js
vendored
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
2
dist/dependency-submission/main/index.js.map
vendored
2
dist/dependency-submission/main/index.js.map
vendored
File diff suppressed because one or more lines are too long
13
dist/dependency-submission/post/index.js
vendored
13
dist/dependency-submission/post/index.js
vendored
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
2
dist/dependency-submission/post/index.js.map
vendored
2
dist/dependency-submission/post/index.js.map
vendored
File diff suppressed because one or more lines are too long
13
dist/setup-gradle/main/index.js
vendored
13
dist/setup-gradle/main/index.js
vendored
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
2
dist/setup-gradle/main/index.js.map
vendored
2
dist/setup-gradle/main/index.js.map
vendored
File diff suppressed because one or more lines are too long
13
dist/setup-gradle/post/index.js
vendored
13
dist/setup-gradle/post/index.js
vendored
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
2
dist/setup-gradle/post/index.js.map
vendored
2
dist/setup-gradle/post/index.js.map
vendored
File diff suppressed because one or more lines are too long
13
dist/wrapper-validation/main/index.js
vendored
13
dist/wrapper-validation/main/index.js
vendored
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
2
dist/wrapper-validation/main/index.js.map
vendored
2
dist/wrapper-validation/main/index.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue