Don't export both userconfigs

This commit is contained in:
Danny McCormick 2019-08-06 11:52:15 -04:00 committed by GitHub
parent f20c85e5e5
commit ff5ec869e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,7 +42,7 @@ function writeRegistryToFile(registryUrl: string, fileLocation: string) {
: `registry=${registryUrl}`;
newContents += `${registryString}${os.EOL}${authString}`;
fs.writeFileSync(fileLocation, newContents);
core.exportVariable('NPM_CONFIG_USERCONFIG', fileLocation);
// core.exportVariable('NPM_CONFIG_USERCONFIG', fileLocation);
// Export empty node_auth_token so npm doesn't complain about not being able to find it
// core.exportVariable('NODE_AUTH_TOKEN', 'XXXXX-XXXXX-XXXXX-XXXXX');
}