diff --git a/dist/setup/index.js b/dist/setup/index.js index b6c873b8..baa759dc 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -6113,7 +6113,7 @@ function run() { } } else { - throw new Error('there\'s empty python-version input'); + throw new Error("there's empty python-version input"); } const matchersPath = path.join(__dirname, '../..', '.github'); core.info(`##[add-matcher]${path.join(matchersPath, 'python.json')}`); diff --git a/src/setup-python.ts b/src/setup-python.ts index 3340a86e..6b3ae1da 100644 --- a/src/setup-python.ts +++ b/src/setup-python.ts @@ -54,7 +54,7 @@ async function run() { await cacheDependencies(cache, pythonVersion); } } else { - throw new Error('there\'s empty python-version input') + throw new Error("there's empty python-version input"); } const matchersPath = path.join(__dirname, '../..', '.github'); core.info(`##[add-matcher]${path.join(matchersPath, 'python.json')}`);