Skip to content

Commit a69041c

Browse files
authored
Successfully set up (#399)
1 parent 1ce3088 commit a69041c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

dist/setup/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -6100,12 +6100,12 @@ function run() {
61006100
if (isPyPyVersion(version)) {
61016101
const installed = yield finderPyPy.findPyPyVersion(version, arch);
61026102
pythonVersion = `${installed.resolvedPyPyVersion}-${installed.resolvedPythonVersion}`;
6103-
core.info(`Successfully setup PyPy ${installed.resolvedPyPyVersion} with Python (${installed.resolvedPythonVersion})`);
6103+
core.info(`Successfully set up PyPy ${installed.resolvedPyPyVersion} with Python (${installed.resolvedPythonVersion})`);
61046104
}
61056105
else {
61066106
const installed = yield finder.useCpythonVersion(version, arch);
61076107
pythonVersion = installed.version;
6108-
core.info(`Successfully setup ${installed.impl} (${pythonVersion})`);
6108+
core.info(`Successfully set up ${installed.impl} (${pythonVersion})`);
61096109
}
61106110
const cache = core.getInput('cache');
61116111
if (cache && utils_1.isCacheFeatureAvailable()) {

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/setup-python.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ async function run() {
4141
const installed = await finderPyPy.findPyPyVersion(version, arch);
4242
pythonVersion = `${installed.resolvedPyPyVersion}-${installed.resolvedPythonVersion}`;
4343
core.info(
44-
`Successfully setup PyPy ${installed.resolvedPyPyVersion} with Python (${installed.resolvedPythonVersion})`
44+
`Successfully set up PyPy ${installed.resolvedPyPyVersion} with Python (${installed.resolvedPythonVersion})`
4545
);
4646
} else {
4747
const installed = await finder.useCpythonVersion(version, arch);
4848
pythonVersion = installed.version;
49-
core.info(`Successfully setup ${installed.impl} (${pythonVersion})`);
49+
core.info(`Successfully set up ${installed.impl} (${pythonVersion})`);
5050
}
5151

5252
const cache = core.getInput('cache');

0 commit comments

Comments
 (0)