Skip to content

Commit

Permalink
fix is_windows (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-shibanov committed Dec 18, 2020
1 parent 8c5ea63 commit 3105fb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist/index.js
Expand Up @@ -7085,7 +7085,7 @@ function usePyPy(majorVersion, architecture) {
core.addPath(installDir);
core.addPath(_binDir);
// Starting from PyPy 7.3.1, the folder that is used for pip and anything that pip installs should be "Scripts" on Windows.
if (IS_WINDOWS) {
if (utils_1.IS_WINDOWS) {
core.addPath(path.join(installDir, 'Scripts'));
}
const impl = 'pypy' + majorVersion.toString();
Expand Down

0 comments on commit 3105fb1

Please sign in to comment.