From 37384aeb57bf4e0ec8a698fc47cb4f2ff0836945 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Wed, 19 Jun 2019 11:36:04 +0200 Subject: [PATCH] fix(core): update --- ts/mod_docker/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/mod_docker/index.ts b/ts/mod_docker/index.ts index cf3d82d..86c137c 100644 --- a/ts/mod_docker/index.ts +++ b/ts/mod_docker/index.ts @@ -114,7 +114,7 @@ export const push = async argvArg => { dockerRegistryUrls.push(argvArg._[2]); } else { if (configObject.dockerRegistries.length === 0) { - logger.log('warn', `There are no docker registries listed in npmextra.json!`); + logger.log('warn', `There are no docker registries listed in npmextra.json! This is strange!`); } dockerRegistryUrls = dockerRegistryUrls.concat(configObject.dockerRegistries); }