Skip to content

Commit

Permalink
repo: fix license:check
Browse files Browse the repository at this point in the history
The commit updates the `license:check` baseline so it does not report a false `license` on github.

Signed-off-by: vince-fugnitto <[email protected]>
  • Loading branch information
vince-fugnitto committed Jun 15, 2022
1 parent e951c50 commit bf905e8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ dev-packages/electron/compile_commands.json
*.tsbuildinfo
.eslintcache
scripts/download
license-check-summary.txt*
dependency-check-summary.txt*
*-trace.json
.tours
File renamed without changes.
4 changes: 2 additions & 2 deletions scripts/check_3pp_licenses.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ const readline = require('readline');

const NO_COLOR = Boolean(process.env['NO_COLOR']);
const dashLicensesJar = path.resolve(__dirname, 'download/dash-licenses.jar');
const dashLicensesSummary = path.resolve(__dirname, '../license-check-summary.txt');
const dashLicensesBaseline = path.resolve(__dirname, '../license-check-baseline.json');
const dashLicensesSummary = path.resolve(__dirname, '../dependency-check-summary.txt');
const dashLicensesBaseline = path.resolve(__dirname, '../dependency-check-baseline.json');
const dashLicensesUrl = 'https://repo.eclipse.org/service/local/artifact/maven/redirect?r=dash-licenses&g=org.eclipse.dash&a=org.eclipse.dash.licenses&v=LATEST';

main().catch(error => {
Expand Down

0 comments on commit bf905e8

Please sign in to comment.