From a6812f9827b1927eb78b036fa7b072768bb853f6 Mon Sep 17 00:00:00 2001 From: leoli Date: Tue, 12 Mar 2024 14:47:41 +0800 Subject: [PATCH] fix: repair the command error that occurs when running on Windows --- packageData.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packageData.json b/packageData.json index 761d411..00f57d3 100644 --- a/packageData.json +++ b/packageData.json @@ -140,7 +140,7 @@ "install": { "linux": "asdf plugin add nodejs && asdf install nodejs 16.20.2 && asdf global nodejs 16.20.2", "mac": "asdf plugin add nodejs && asdf install nodejs 18.18.0 && asdf global nodejs 18.18.0", - "windows": "choco install nvm -y && nvm install 18.18.0 && nvm use 18.18.0" + "windows": "choco install nvm -y; nvm install 18.18.0; nvm use 18.18.0" }, "type": "force" },