mirror of
https://github.com/actions/setup-python
synced 2025-04-05 06:49:43 +00:00
Add warning in case the versionFile isn't found
This commit is contained in:
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 {
|
||||
|
Reference in New Issue
Block a user