File tree 2 files changed +4
-0
lines changed
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -65275,6 +65275,7 @@ function resolveVersionInput() {
65275
65275
throw new Error(`The specified python version file at: ${versionFile} does not exist.`);
65276
65276
}
65277
65277
if (fs_1.default.existsSync(defaultVersionFile)) {
65278
+ core.warning(`The specified python version file at: ${versionFile} does not exist. Attempting to find ${defaultVersionFile} file.`);
65278
65279
versionFile = defaultVersionFile;
65279
65280
}
65280
65281
else {
Original file line number Diff line number Diff line change @@ -47,6 +47,9 @@ function resolveVersionInput(): string {
47
47
}
48
48
49
49
if ( fs . existsSync ( defaultVersionFile ) ) {
50
+ core . warning (
51
+ `The specified python version file at: ${ versionFile } does not exist. Attempting to find ${ defaultVersionFile } file.`
52
+ ) ;
50
53
versionFile = defaultVersionFile ;
51
54
} else {
52
55
throw new Error (
You can’t perform that action at this time.
0 commit comments