Skip to content

Commit

Permalink
regenerate dist
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-shibanov committed Mar 23, 2023
1 parent 81d2ddd commit d954b4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist/setup/index.js
Expand Up @@ -68004,7 +68004,7 @@ function resolveVersionInput() {
utils_1.logWarning("Neither 'python-version' nor 'python-version-file' inputs were supplied. Attempting to find '.python-version' file.");
versionFile = '.python-version';
if (fs_1.default.existsSync(versionFile)) {
const version = fs_1.default.readFileSync(versionFile, 'utf8');
const version = fs_1.default.readFileSync(versionFile, 'utf8').trim();
core.info(`Resolved ${versionFile} as ${version}`);
return [version];
}
Expand Down

0 comments on commit d954b4b

Please sign in to comment.