Change error message in the publish func for when the credentials provider can not get a token

This commit is contained in:
ebarrios
2021-02-16 19:56:18 +01:00
parent cc2c047f15
commit 36a4ede275
@@ -64,7 +64,7 @@ export class GithubPublisher implements PublisherBase {
});
if (!token) {
logger.error(`Unable to adquire credentials for ${owner}/${name}`);
logger.error(`No token could be acquired for URL: ${values.storePath}`);
return { remoteUrl: '', catalogInfoUrl: undefined };
}