Skip to content

Commit 0e43a44

Browse files
committed
build.ps1 - missed a foreach-object brace on same line
1 parent 2f87803 commit 0e43a44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,8 +336,8 @@ try
336336

337337
$StartInfo.EnvironmentVariables.Clear()
338338

339-
Get-ChildItem -Path env:* | ForEach-Object
340-
{
339+
#Brace must be on same line for foreach-object to work
340+
Get-ChildItem -Path env:* | ForEach-Object {
341341
$StartInfo.EnvironmentVariables.Add($_.Name, $_.Value)
342342
}
343343

0 commit comments

Comments
 (0)