Files
winutil/winutil-test.ps1
Couleur 48a92fedf7 Add a check for $isLinux (#133)
This is a very simple if statement, I don't think there's much to explain

```PowerShell
if ($IsLinux){ # PowerShell on Linux has that read-only bool variable set to $true
   Write-Host "This utility is exclusively designed for Windows"
   return
}
```
2022-09-15 10:47:22 -05:00

82 KiB