From 8900a13c6bb866dda3d0495a1f1e02edaf56d023 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sun, 9 Dec 2018 14:39:24 +0100 Subject: [PATCH] fix(core): update --- ts/mod_npm/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/mod_npm/index.ts b/ts/mod_npm/index.ts index 00a4c44..a5d1b18 100644 --- a/ts/mod_npm/index.ts +++ b/ts/mod_npm/index.ts @@ -54,7 +54,7 @@ const prepare = async () => { plugins.smartfile.memory.toFsSync(npmrcFileString, '/root/.npmrc'); logger.log('info', `setting default npm registry to ${config.npmRegistryUrl}`); - await bash(`npm set registry https:${config.npmRegistryUrl}`); + await bash(`npm set registry https://${config.npmRegistryUrl}`); return; };