appease the linter

This commit is contained in:
Andrew DiLosa 2022-05-16 19:56:14 -07:00
parent bce43cfdd1
commit c38a07e1b8
2 changed files with 3 additions and 3 deletions

2
dist/setup/index.js vendored
View file

@ -6095,7 +6095,7 @@ function resolveVersionInput() {
if (version) {
return version;
}
const versionFilePath = path.join(process.env.GITHUB_WORKSPACE, versionFile || ".python-version");
const versionFilePath = path.join(process.env.GITHUB_WORKSPACE, versionFile || '.python-version');
if (!fs_1.default.existsSync(versionFilePath)) {
throw new Error(`The specified python version file at: ${versionFilePath} does not exist`);
}

View file

@ -38,7 +38,7 @@ function resolveVersionInput(): string {
const versionFilePath = path.join(
process.env.GITHUB_WORKSPACE!,
versionFile || ".python-version"
versionFile || '.python-version'
);
if (!fs.existsSync(versionFilePath)) {
throw new Error(