From 6730960cfa5e64896888a8f10d27f545430fe036 Mon Sep 17 00:00:00 2001 From: aparnajyothi-y <147696841+aparnajyothi-y@users.noreply.github.com> Date: Mon, 24 Jun 2024 19:34:18 +0530 Subject: [PATCH] Update win-node-builder.psm1 --- builders/win-node-builder.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builders/win-node-builder.psm1 b/builders/win-node-builder.psm1 index ffdc060..adc3b12 100644 --- a/builders/win-node-builder.psm1 +++ b/builders/win-node-builder.psm1 @@ -72,7 +72,7 @@ class WinNodeBuilder : NodeBuilder { Create Node.js artifact installation script based on specified template. #> - $installationScriptLocation = $installationScriptLocation = New-Item -Path $this.WorkFolderLocation -Name $this.InstallationScriptName -ItemType File -Force + $installationScriptLocation = New-Item -Path $this.WorkFolderLocation -Name $this.InstallationScriptName -ItemType File -Force $installationTemplateLocation = Join-Path -Path $this.InstallationTemplatesLocation -ChildPath $this.InstallationTemplateName $installationTemplateContent = Get-Content -Path $installationTemplateLocation -Raw