Build outputs

This commit is contained in:
Daz DeBoer 2022-08-18 17:19:11 -06:00
parent f0ec7fb780
commit cd579d970f
No known key found for this signature in database
GPG key ID: DD6B9F0B06683D5D
4 changed files with 6 additions and 10 deletions

6
dist/main/index.js vendored
View file

@ -65941,8 +65941,7 @@ class AbstractEntryExtractor {
const artifactType = cacheEntryDefinition.artifactType; const artifactType = cacheEntryDefinition.artifactType;
const pattern = cacheEntryDefinition.pattern; const pattern = cacheEntryDefinition.pattern;
const globber = yield glob.create(pattern, { const globber = yield glob.create(pattern, {
implicitDescendants: false, implicitDescendants: false
followSymbolicLinks: false
}); });
const matchingFiles = yield globber.glob(); const matchingFiles = yield globber.glob();
if (matchingFiles.length === 0) { if (matchingFiles.length === 0) {
@ -66045,8 +66044,7 @@ class GradleHomeEntryExtractor extends AbstractEntryExtractor {
return __awaiter(this, void 0, void 0, function* () { return __awaiter(this, void 0, void 0, function* () {
const wrapperZips = path_1.default.resolve(this.gradleUserHome, 'wrapper/dists/*/*/*.zip'); const wrapperZips = path_1.default.resolve(this.gradleUserHome, 'wrapper/dists/*/*/*.zip');
const globber = yield glob.create(wrapperZips, { const globber = yield glob.create(wrapperZips, {
implicitDescendants: false, implicitDescendants: false
followSymbolicLinks: false
}); });
for (const wrapperZip of yield globber.glob()) { for (const wrapperZip of yield globber.glob()) {
(0, cache_utils_1.cacheDebug)(`Deleting wrapper zip: ${wrapperZip}`); (0, cache_utils_1.cacheDebug)(`Deleting wrapper zip: ${wrapperZip}`);

File diff suppressed because one or more lines are too long

6
dist/post/index.js vendored
View file

@ -64992,8 +64992,7 @@ class AbstractEntryExtractor {
const artifactType = cacheEntryDefinition.artifactType; const artifactType = cacheEntryDefinition.artifactType;
const pattern = cacheEntryDefinition.pattern; const pattern = cacheEntryDefinition.pattern;
const globber = yield glob.create(pattern, { const globber = yield glob.create(pattern, {
implicitDescendants: false, implicitDescendants: false
followSymbolicLinks: false
}); });
const matchingFiles = yield globber.glob(); const matchingFiles = yield globber.glob();
if (matchingFiles.length === 0) { if (matchingFiles.length === 0) {
@ -65096,8 +65095,7 @@ class GradleHomeEntryExtractor extends AbstractEntryExtractor {
return __awaiter(this, void 0, void 0, function* () { return __awaiter(this, void 0, void 0, function* () {
const wrapperZips = path_1.default.resolve(this.gradleUserHome, 'wrapper/dists/*/*/*.zip'); const wrapperZips = path_1.default.resolve(this.gradleUserHome, 'wrapper/dists/*/*/*.zip');
const globber = yield glob.create(wrapperZips, { const globber = yield glob.create(wrapperZips, {
implicitDescendants: false, implicitDescendants: false
followSymbolicLinks: false
}); });
for (const wrapperZip of yield globber.glob()) { for (const wrapperZip of yield globber.glob()) {
(0, cache_utils_1.cacheDebug)(`Deleting wrapper zip: ${wrapperZip}`); (0, cache_utils_1.cacheDebug)(`Deleting wrapper zip: ${wrapperZip}`);

File diff suppressed because one or more lines are too long