mirror of
https://gitea.com/actions/setup-node.git
synced 2024-11-13 02:59:19 +08:00
Add single quotes for authString
This commit is contained in:
parent
e7609c8e84
commit
c970c05a19
@ -36,13 +36,13 @@ function writeRegistryToFile(registryUrl: string, fileLocation: string) {
|
||||
}
|
||||
// Remove http: or https: from front of registry.
|
||||
const authString =
|
||||
registryUrl.replace(/(^\w+:|^)/, '') + `:_authToken=${NODE_AUTH_TOKEN}`;
|
||||
registryUrl.replace(/(^\w+:|^)/, '') + ':_authToken=${NODE_AUTH_TOKEN}';
|
||||
const registryString = scope
|
||||
? `${scope}:registry=${registryUrl}`
|
||||
: `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');
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user