Accept absolute paths for 'global-json-file' input (#396)

This commit is contained in:
Othmane KINANE
2023-03-13 12:34:56 +01:00
committed by GitHub
parent 2699274f6e
commit 1d9f0dad5b
3 changed files with 28 additions and 12 deletions

2
dist/index.js vendored
View File

@ -513,7 +513,7 @@ function run() {
const installedDotnetVersions = [];
const globalJsonFileInput = core.getInput('global-json-file');
if (globalJsonFileInput) {
const globalJsonPath = path_1.default.join(process.cwd(), globalJsonFileInput);
const globalJsonPath = path_1.default.resolve(process.cwd(), globalJsonFileInput);
if (!fs.existsSync(globalJsonPath)) {
throw new Error(`The specified global.json file '${globalJsonFileInput}' does not exist`);
}