Fix PATH on Windows for extensions (#6000)

This commit is contained in:
Jack Amadeo
2025-12-05 14:54:23 -05:00
committed by GitHub
parent 40f1d23c03
commit 6fa3bd7e8a
3 changed files with 18 additions and 76 deletions
@@ -10,7 +10,7 @@ if exist "C:\Program Files\nodejs\node.exe" (
REM Check if Node.js is installed in Program Files (x86)
if exist "C:\Program Files (x86)\nodejs\node.exe" (
echo Node.js found in Program Files (x86)
echo "Node.js found in Program Files (x86)"
set "NODE_EXE=C:\Program Files (x86)\nodejs\node.exe"
goto :found
)