File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -65275,6 +65275,7 @@ function resolveVersionInput() {
6527565275 throw new Error(`The specified python version file at: ${versionFile} does not exist.`);
6527665276 }
6527765277 if (fs_1.default.existsSync(defaultVersionFile)) {
65278+ core.warning(`The specified python version file at: ${versionFile} does not exist. Attempting to find ${defaultVersionFile} file.`);
6527865279 versionFile = defaultVersionFile;
6527965280 }
6528065281 else {
Original file line number Diff line number Diff line change @@ -47,6 +47,9 @@ function resolveVersionInput(): string {
4747 }
4848
4949 if ( fs . existsSync ( defaultVersionFile ) ) {
50+ core . warning (
51+ `The specified python version file at: ${ versionFile } does not exist. Attempting to find ${ defaultVersionFile } file.`
52+ ) ;
5053 versionFile = defaultVersionFile ;
5154 } else {
5255 throw new Error (
You can’t perform that action at this time.
0 commit comments