From 9889c42041c62a9280dd8ef6cc19c86afa7736b4 Mon Sep 17 00:00:00 2001 From: David Kale Date: Thu, 7 Nov 2019 14:47:27 -0500 Subject: [PATCH] win-x86 externals --- src/Misc/externals.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Misc/externals.sh b/src/Misc/externals.sh index 04e03bd53..69f90c627 100755 --- a/src/Misc/externals.sh +++ b/src/Misc/externals.sh @@ -123,9 +123,9 @@ function acquireExternalTool() { } # Download the external tools only for Windows. -if [[ "$PACKAGERUNTIME" == "win-x64" ]]; then - acquireExternalTool "$NODE_URL/v${NODE12_VERSION}/win-x64/node.exe" node12/bin - acquireExternalTool "$NODE_URL/v${NODE12_VERSION}/win-x64/node.lib" node12/bin +if [[ "$PACKAGERUNTIME" == "win-x64" || "$PACKAGERUNTIME" == "win-x86" ]]; then + acquireExternalTool "$NODE_URL/v${NODE12_VERSION}/$PACKAGERUNTIME/node.exe" node12/bin + acquireExternalTool "$NODE_URL/v${NODE12_VERSION}/$PACKAGERUNTIME/node.lib" node12/bin if [[ "$PRECACHE" != "" ]]; then acquireExternalTool "https://github.com/microsoft/vswhere/releases/download/2.6.7/vswhere.exe" vswhere fi