mirror of
https://github.com/android-actions/setup-android
synced 2024-11-22 05:29:34 -08:00
Base path of JSON file on path relative to index.js instead of CWD
This commit is contained in:
parent
499a64419b
commit
fffea1827d
1 changed files with 5 additions and 5 deletions
10
index.js
10
index.js
|
@ -1,5 +1,5 @@
|
||||||
console.log(`::add-matcher::${process.cwd()}/.github/android-lint-file-matcher.json`);
|
console.log(`::add-matcher::${__dirname}/.github/android-lint-file-matcher.json`);
|
||||||
console.log(`::add-matcher::${process.cwd()}/.github/android-lint-line-matcher.json`);
|
console.log(`::add-matcher::${__dirname}/.github/android-lint-line-matcher.json`);
|
||||||
console.log(`::add-matcher::${process.cwd()}/.github/gradle-matcher.json`);
|
console.log(`::add-matcher::${__dirname}/.github/gradle-matcher.json`);
|
||||||
console.log(`::add-matcher::${process.cwd()}/.github/kotlin-error-matcher.json`);
|
console.log(`::add-matcher::${__dirname}/.github/kotlin-error-matcher.json`);
|
||||||
console.log(`::add-matcher::${process.cwd()}/.github/kotlin-warning-matcher.json`);
|
console.log(`::add-matcher::${__dirname}/.github/kotlin-warning-matcher.json`);
|
||||||
|
|
Loading…
Reference in a new issue