Skip to content

Commit a7605bb

Browse files
committed
Remove useless patch check
1 parent 9234752 commit a7605bb

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/actions/reports-group/create/dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/reports-group/create/dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/reports-group/find/dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/reports-group/find/dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/reports-group/load-metadata/dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/reports-group/load-metadata/dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/reports-group/node-sdk/src/path.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ function trustFrom(workspacePath) {
6868
*/
6969
trustedMetadataUnder: (untrustedGroupPath) => {
7070
const trustedPath = helpers.trust(path.join(untrustedGroupPath, METADATA_FILENAME));
71-
const content = fs.readFileSync(helpers.trust(trustedPath)).toString();
71+
const content = fs.readFileSync(trustedPath).toString();
7272
core.debug(untrustedGroupPath + ' content=' + content);
7373

7474
const untrustedMetadata = JSON.parse(content);
@@ -81,7 +81,7 @@ function trustFrom(workspacePath) {
8181
reports: trustedReportPaths,
8282
flags: untrustedMetadata.flags,
8383
path: withTrailingSeparator(trustedGroupPath),
84-
reportPaths: trustedReportPaths.map(trustedFp => helpers.trust(path.join(trustedGroupPath, trustedFp))),
84+
reportPaths: trustedReportPaths.map(trustedFp => path.join(trustedGroupPath, trustedFp)),
8585
};
8686
}
8787
};

0 commit comments

Comments
 (0)