rename PNPM_HOME to PNPM_HOME_PATH

This commit is contained in:
Zoltan Kochan 2022-02-07 23:01:43 +02:00
parent 9087a16275
commit 0e9c99a89a
No known key found for this signature in database
GPG Key ID: 649E4D4AF74E7DEC

View File

@ -30,7 +30,7 @@ export async function runSelfInstaller(inputs: Inputs): Promise<number> {
if (result === 0) {
const pnpmHome = join(dest, 'node_modules/.bin')
core.addPath(pnpmHome)
core.exportVariable('PNPM_HOME', pnpmHome)
core.exportVariable('PNPM_HOME_PATH', pnpmHome)
}
return result
}