mirror of
https://github.com/gradle/actions.git
synced 2025-02-03 15:26:42 -05:00
[bot] Update dist directory
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 childrenPaths = await Promise.all(childrenNames.map(async (childName) => {
|
||||
const childPath = path.resolve(baseDir, childName);
|
||||
return fs.lstatSync(childPath).isDirectory()
|
||||
? recursivelyListFiles(childPath)
|
||||
: new Promise(resolve => resolve([childPath]));
|
||||
const stat = fs.lstatSync(childPath, { throwIfNoEntry: false });
|
||||
if (stat === undefined) {
|
||||
return [];
|
||||
}
|
||||
else if (stat.isDirectory()) {
|
||||
return recursivelyListFiles(childPath);
|
||||
}
|
||||
else {
|
||||
return new Promise(resolve => resolve([childPath]));
|
||||
}
|
||||
}));
|
||||
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 childrenPaths = await Promise.all(childrenNames.map(async (childName) => {
|
||||
const childPath = path.resolve(baseDir, childName);
|
||||
return fs.lstatSync(childPath).isDirectory()
|
||||
? recursivelyListFiles(childPath)
|
||||
: new Promise(resolve => resolve([childPath]));
|
||||
const stat = fs.lstatSync(childPath, { throwIfNoEntry: false });
|
||||
if (stat === undefined) {
|
||||
return [];
|
||||
}
|
||||
else if (stat.isDirectory()) {
|
||||
return recursivelyListFiles(childPath);
|
||||
}
|
||||
else {
|
||||
return new Promise(resolve => resolve([childPath]));
|
||||
}
|
||||
}));
|
||||
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 childrenPaths = await Promise.all(childrenNames.map(async (childName) => {
|
||||
const childPath = path.resolve(baseDir, childName);
|
||||
return fs.lstatSync(childPath).isDirectory()
|
||||
? recursivelyListFiles(childPath)
|
||||
: new Promise(resolve => resolve([childPath]));
|
||||
const stat = fs.lstatSync(childPath, { throwIfNoEntry: false });
|
||||
if (stat === undefined) {
|
||||
return [];
|
||||
}
|
||||
else if (stat.isDirectory()) {
|
||||
return recursivelyListFiles(childPath);
|
||||
}
|
||||
else {
|
||||
return new Promise(resolve => resolve([childPath]));
|
||||
}
|
||||
}));
|
||||
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 childrenPaths = await Promise.all(childrenNames.map(async (childName) => {
|
||||
const childPath = path.resolve(baseDir, childName);
|
||||
return fs.lstatSync(childPath).isDirectory()
|
||||
? recursivelyListFiles(childPath)
|
||||
: new Promise(resolve => resolve([childPath]));
|
||||
const stat = fs.lstatSync(childPath, { throwIfNoEntry: false });
|
||||
if (stat === undefined) {
|
||||
return [];
|
||||
}
|
||||
else if (stat.isDirectory()) {
|
||||
return recursivelyListFiles(childPath);
|
||||
}
|
||||
else {
|
||||
return new Promise(resolve => resolve([childPath]));
|
||||
}
|
||||
}));
|
||||
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 childrenPaths = await Promise.all(childrenNames.map(async (childName) => {
|
||||
const childPath = path.resolve(baseDir, childName);
|
||||
return fs.lstatSync(childPath).isDirectory()
|
||||
? recursivelyListFiles(childPath)
|
||||
: new Promise(resolve => resolve([childPath]));
|
||||
const stat = fs.lstatSync(childPath, { throwIfNoEntry: false });
|
||||
if (stat === undefined) {
|
||||
return [];
|
||||
}
|
||||
else if (stat.isDirectory()) {
|
||||
return recursivelyListFiles(childPath);
|
||||
}
|
||||
else {
|
||||
return new Promise(resolve => resolve([childPath]));
|
||||
}
|
||||
}));
|
||||
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