Add warning in case the versionFile isn't found

This commit is contained in:
IvanZosimov 2022-06-30 16:34:29 +02:00
parent d97b6edda3
commit 82eddc4023
2 changed files with 4 additions and 0 deletions

1
dist/setup/index.js vendored
View File

@ -65275,6 +65275,7 @@ function resolveVersionInput() {
throw new Error(`The specified python version file at: ${versionFile} does not exist.`);
}
if (fs_1.default.existsSync(defaultVersionFile)) {
core.warning(`The specified python version file at: ${versionFile} does not exist. Attempting to find ${defaultVersionFile} file.`);
versionFile = defaultVersionFile;
}
else {

View File

@ -47,6 +47,9 @@ function resolveVersionInput(): string {
}
if (fs.existsSync(defaultVersionFile)) {
core.warning(
`The specified python version file at: ${versionFile} does not exist. Attempting to find ${defaultVersionFile} file.`
);
versionFile = defaultVersionFile;
} else {
throw new Error(