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

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

1127
dist/index.js vendored

File diff suppressed because it is too large Load Diff

@ -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