From f6b577fe4d8dc1f1c14dfe3cf774389e32f34f06 Mon Sep 17 00:00:00 2001 From: younglim Date: Fri, 1 Dec 2023 14:59:35 +0800 Subject: [PATCH] Push fix for incorrect reference to node download in install_purple_dependencies.ps1 --- scripts/install_purple_dependencies.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install_purple_dependencies.ps1 b/scripts/install_purple_dependencies.ps1 index 50e6da7e..b99bf660 100644 --- a/scripts/install_purple_dependencies.ps1 +++ b/scripts/install_purple_dependencies.ps1 @@ -13,7 +13,7 @@ if (-Not (Test-Path nodejs-win\node.exe)) { Write-Output "Unzip Node" Expand-Archive .\nodejs-win.zip -DestinationPath . - Rename-Item node-v18.18.0-win-x64 -NewName nodejs-win + Rename-Item node-v20.10.0-win-x64 -NewName nodejs-win Remove-Item -Force .\nodejs-win.zip }