fix(core): update

This commit is contained in:
Philipp Kunz 2018-12-09 15:22:20 +01:00
parent f30dd3da65
commit 99b03aa796
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
"npmci": {
"npmGlobalTools": [],
"npmAccessLevel": "public",
"npmRegistryUrl": "//registry.npmjs.org"
"npmRegistryUrl": "registry.npmjs.org"
},
"npmdocker":{
"baseImage":"hosttoday/ht-docker-node:npmci",

View File

@ -76,7 +76,7 @@ const publish = async () => {
// -> configure registry url
if (config.npmRegistryUrl) {
npmAccessCliString = `--registry=${config.npmRegistryUrl}`;
npmAccessCliString = `--registry=https://${config.npmRegistryUrl}`;
} else {
logger.log('error', `no registry url specified. Can't publish!`);
process.exit(1);