Skip to content

Commit ae89eec

Browse files
committed
Fix unnecessary output pipeline pollution in build-module script for authentication module
1 parent e4770fa commit ae89eec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Authentication/Authentication/build-module.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ if ($LastExitCode -ne 0) {
8080

8181
# Ensure out directory exists and is clean.
8282
Remove-Item -Path $outDir -Recurse -ErrorAction Ignore
83-
New-Item -Path $outDir -ItemType Directory
84-
New-Item -Path $outDeps -ItemType Directory
85-
New-Item -Path $outCore -ItemType Directory
86-
New-Item -Path $outDesktop -ItemType Directory
83+
New-Item -Path $outDir -ItemType Directory | out-null
84+
New-Item -Path $outDeps -ItemType Directory | out-null
85+
New-Item -Path $outCore -ItemType Directory | out-null
86+
New-Item -Path $outDesktop -ItemType Directory | out-null
8787

8888
# Copy manifest.
8989
Copy-Item -Path "$cmdletsSrc/$ModulePrefix.$ModuleName.format.ps1xml" -Destination $outDir

0 commit comments

Comments
 (0)