Warn if the action ends up not installing any .NET version.

pull/344/head
Theodore Tsirpanis 3 years ago
parent 607fce577a
commit 9984a6fa87

3
dist/index.js vendored

@ -526,6 +526,9 @@ function run() {
if (fs.existsSync(globalJsonPath)) {
versions.push(getVersionFromGlobalJson(globalJsonPath));
}
else {
core.info(`global.json wasn't found in the root directory. No .NET version will be installed.`);
}
}
if (versions.length) {
const quality = core.getInput('dotnet-quality');

@ -46,6 +46,10 @@ export async function run() {
const globalJsonPath = path.join(process.cwd(), 'global.json');
if (fs.existsSync(globalJsonPath)) {
versions.push(getVersionFromGlobalJson(globalJsonPath));
} else {
core.info(
`global.json wasn't found in the root directory. No .NET version will be installed.`
);
}
}

Loading…
Cancel
Save