From 1b102ab9a68914f540dfc3a98966078285a4dc97 Mon Sep 17 00:00:00 2001 From: zhangdiandian <1635468471@qq.com> Date: Mon, 9 Oct 2023 07:31:04 +0000 Subject: [PATCH 1/3] [Tests] fix filename typo Signed-off-by: zhangdiandian <1635468471@qq.com> --- ...Running 'nvm use' with nvmrc containing not installed version} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename test/slow/nvm use/{Running 'nvm use' with nvmrc containing not intalled version => Running 'nvm use' with nvmrc containing not installed version} (100%) diff --git a/test/slow/nvm use/Running 'nvm use' with nvmrc containing not intalled version b/test/slow/nvm use/Running 'nvm use' with nvmrc containing not installed version similarity index 100% rename from test/slow/nvm use/Running 'nvm use' with nvmrc containing not intalled version rename to test/slow/nvm use/Running 'nvm use' with nvmrc containing not installed version From 414e8d426f73fd3fe98ff8fd1a8d8e0f08e4bf99 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Mon, 9 Oct 2023 14:50:40 -0700 Subject: [PATCH 2/3] [Tests] switch cygwin mirror --- .github/workflows/windows-npm.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/windows-npm.yml b/.github/workflows/windows-npm.yml index 18197ce542d..e2652bb127a 100644 --- a/.github/workflows/windows-npm.yml +++ b/.github/workflows/windows-npm.yml @@ -55,7 +55,8 @@ jobs: - name: Install Cygwin shell: bash run: | - export SITE='https://mirror.clarkson.edu/cygwin/' + export SITE='https://mirror.clarkson.edu/cygwin/' # see https://archlinux.org/mirrors/clarkson.edu/1603/ for uptime status + export SITE='https://mirrors.kernel.org/sourceware/cygwin/' export LOCALDIR="$(pwd)" export ROOTDIR="$USERPROFILE\\cygwin" export PACKAGES='bash,git,curl' From 8a83b36688e270e460803ab842e3333393b523c7 Mon Sep 17 00:00:00 2001 From: Michael Di Prisco Date: Fri, 6 Oct 2023 02:36:26 +0200 Subject: [PATCH 3/3] [readme] missing parenthesis --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index aa7d4c416fb..ae9b63c5d38 100644 --- a/README.md +++ b/README.md @@ -389,7 +389,7 @@ or, you can at any time run the following command to get the latest supported np nvm install-latest-npm ``` -If you've already gotten an error to the effect of "npm does not support Node.js", you'll need to (1) revert to a previous node version (`nvm ls` & `nvm use `, (2) delete the newly created node version (`nvm uninstall `), then (3) rerun your `nvm install` with the `--latest-npm` flag. +If you've already gotten an error to the effect of "npm does not support Node.js", you'll need to (1) revert to a previous node version (`nvm ls` & `nvm use `), (2) delete the newly created node version (`nvm uninstall `), then (3) rerun your `nvm install` with the `--latest-npm` flag. ### Default Global Packages From File While Installing