mirror of
https://github.com/actions/setup-python.git
synced 2024-11-10 05:41:06 +07:00
Add warning in case the versionFile isn't found
This commit is contained in:
parent
d97b6edda3
commit
82eddc4023
1
dist/setup/index.js
vendored
1
dist/setup/index.js
vendored
@ -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 {
|
||||
|
@ -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(
|
||||
|
Loading…
Reference in New Issue
Block a user