Add single quotes for authString

pull/195/head
Iheanyi Ekechukwu 2019-08-06 12:07:22 -04:00
parent e7609c8e84
commit c970c05a19
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ 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}`;