Skip to content

Commit 3105fb1

Browse files
fix is_windows (#172)
1 parent 8c5ea63 commit 3105fb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dist/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7085,7 +7085,7 @@ function usePyPy(majorVersion, architecture) {
70857085
core.addPath(installDir);
70867086
core.addPath(_binDir);
70877087
// Starting from PyPy 7.3.1, the folder that is used for pip and anything that pip installs should be "Scripts" on Windows.
7088-
if (IS_WINDOWS) {
7088+
if (utils_1.IS_WINDOWS) {
70897089
core.addPath(path.join(installDir, 'Scripts'));
70907090
}
70917091
const impl = 'pypy' + majorVersion.toString();

0 commit comments

Comments
 (0)