Skip to content

Commit d4c9760

Browse files
committed
Resolve mkdir alias to avoid name conflict
1 parent 76b27a3 commit d4c9760

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Coverage.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ if ($null -eq $testProjectLocations) {
2929
}
3030

3131
Function ResolveAndForcePath([string]$relativePath) {
32-
mkdir -Force $relativePath | Out-Null
32+
New-Item -ItemType Directory -Force $relativePath | Out-Null
3333
return (Resolve-Path $relativePath).Path
3434
}
3535

0 commit comments

Comments
 (0)