Skip to content

Commit 5ede2eb

Browse files
Merge pull request #191 from manandre/coverage-linux
Resolve mkdir alias to avoid name conflict
2 parents 76b27a3 + d4c9760 commit 5ede2eb

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)