mirror of
https://github.com/actions/setup-python.git
synced 2025-04-21 22:38:43 +00:00
add minor fix
This commit is contained in:
parent
eaf0789850
commit
0727fdd07d
2 changed files with 2 additions and 2 deletions
2
dist/setup/index.js
vendored
2
dist/setup/index.js
vendored
|
@ -6480,7 +6480,7 @@ function run() {
|
|||
cacheDistributor.restoreCache();
|
||||
}
|
||||
}
|
||||
const matchersPath = path.join(__dirname, '..', '.github');
|
||||
const matchersPath = path.join(__dirname, '../..', '.github');
|
||||
core.info(`##[add-matcher]${path.join(matchersPath, 'python.json')}`);
|
||||
}
|
||||
catch (err) {
|
||||
|
|
|
@ -35,7 +35,7 @@ async function run() {
|
|||
cacheDistributor.restoreCache();
|
||||
}
|
||||
}
|
||||
const matchersPath = path.join(__dirname, '..', '.github');
|
||||
const matchersPath = path.join(__dirname, '../..', '.github');
|
||||
core.info(`##[add-matcher]${path.join(matchersPath, 'python.json')}`);
|
||||
} catch (err) {
|
||||
core.setFailed((err as Error).message);
|
||||
|
|
Loading…
Add table
Reference in a new issue