Skip to content

Commit

Permalink
Build outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
bigdaz committed Aug 18, 2022
1 parent f0ec7fb commit cd579d9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
6 changes: 2 additions & 4 deletions dist/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -65941,8 +65941,7 @@ class AbstractEntryExtractor {
const artifactType = cacheEntryDefinition.artifactType;
const pattern = cacheEntryDefinition.pattern;
const globber = yield glob.create(pattern, {
implicitDescendants: false,
followSymbolicLinks: false
implicitDescendants: false
});
const matchingFiles = yield globber.glob();
if (matchingFiles.length === 0) {
Expand Down Expand Up @@ -66045,8 +66044,7 @@ class GradleHomeEntryExtractor extends AbstractEntryExtractor {
return __awaiter(this, void 0, void 0, function* () {
const wrapperZips = path_1.default.resolve(this.gradleUserHome, 'wrapper/dists/*/*/*.zip');
const globber = yield glob.create(wrapperZips, {
implicitDescendants: false,
followSymbolicLinks: false
implicitDescendants: false
});
for (const wrapperZip of yield globber.glob()) {
(0, cache_utils_1.cacheDebug)(`Deleting wrapper zip: ${wrapperZip}`);
Expand Down
2 changes: 1 addition & 1 deletion dist/main/index.js.map

Large diffs are not rendered by default.

6 changes: 2 additions & 4 deletions dist/post/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -64992,8 +64992,7 @@ class AbstractEntryExtractor {
const artifactType = cacheEntryDefinition.artifactType;
const pattern = cacheEntryDefinition.pattern;
const globber = yield glob.create(pattern, {
implicitDescendants: false,
followSymbolicLinks: false
implicitDescendants: false
});
const matchingFiles = yield globber.glob();
if (matchingFiles.length === 0) {
Expand Down Expand Up @@ -65096,8 +65095,7 @@ class GradleHomeEntryExtractor extends AbstractEntryExtractor {
return __awaiter(this, void 0, void 0, function* () {
const wrapperZips = path_1.default.resolve(this.gradleUserHome, 'wrapper/dists/*/*/*.zip');
const globber = yield glob.create(wrapperZips, {
implicitDescendants: false,
followSymbolicLinks: false
implicitDescendants: false
});
for (const wrapperZip of yield globber.glob()) {
(0, cache_utils_1.cacheDebug)(`Deleting wrapper zip: ${wrapperZip}`);
Expand Down
2 changes: 1 addition & 1 deletion dist/post/index.js.map

Large diffs are not rendered by default.

0 comments on commit cd579d9

Please sign in to comment.