Closed manandre closed 4 years ago
The Coverage.ps1 script calls mkdir -Force $relativePath
mkdir
is an alias for New-Item -ItemType Directory
in PowerShell, but it also a command an Unix command and it does not support the -Force
parameter.
mkdir
should be replaced by New-Item -ItemType Directory
in order to avoid the name conflict.
Execution of Coverage.ps1 on Ubuntu 18.04 (with PowerShell installed) generates the following error: