Make linter happy

This commit is contained in:
Jason Karns 2021-02-07 10:28:55 -05:00
parent 20a965d27f
commit 094c1c12f4
No known key found for this signature in database
GPG Key ID: 4F072FBC1ACA2746

View File

@ -25,8 +25,11 @@ function writeRegistryToFile(
if (!scope && registryUrl.indexOf('npm.pkg.github.com') > -1) {
scope = github.context.repo.owner;
}
if (!scope && namePrefix = require('./package').name.match('@[^/]+')) {
scope = namePrefix[0];
if (!scope) {
let namePrefix = require('./package').name.match('@[^/]+');
if (namePrefix) {
scope = namePrefix[0];
}
}
if (scope && scope[0] != '@') {
scope = '@' + scope;