From cc74b1f05d7f6d11e2d83e8c6cd3ba6a1b7b9dfd Mon Sep 17 00:00:00 2001 From: Jamie Cansdale Date: Fri, 16 Oct 2020 09:23:40 +0100 Subject: [PATCH] Registry URLs must include https:// --- .../configuring-npm-for-use-with-github-packages.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages.md b/content/packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages.md index efc0e2d45072..0cb9fd1ca99d 100644 --- a/content/packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages.md +++ b/content/packages/using-github-packages-with-your-projects-ecosystem/configuring-npm-for-use-with-github-packages.md @@ -183,8 +183,8 @@ If your instance has subdomain isolation disabled: ```shell registry=https://HOSTNAME/_registry/npm/OWNER -@OWNER:registry=HOSTNAME/_registry/npm/ -@OWNER:registry=HOSTNAME/_registry/npm/ +@OWNER:registry=https://HOSTNAME/_registry/npm/ +@OWNER:registry=https://HOSTNAME/_registry/npm/ ``` {% endif %}