From 3105fb18c05ddd93efea5f9e0bef7a03a6e9e7df Mon Sep 17 00:00:00 2001 From: Dmitry Shibanov Date: Fri, 18 Dec 2020 17:05:24 +0300 Subject: [PATCH] fix is_windows (#172) --- dist/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/index.js b/dist/index.js index 7cf0e8f43..f0939428b 100644 --- a/dist/index.js +++ b/dist/index.js @@ -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();