WahlNetwork / vester

Easily validate and remediate your vSphere configuration
https://wahlnetwork.com
Apache License 2.0
146 stars 45 forks source link

Support running in PowerCLI Core Docker container #208

Open jeffgreenca opened 6 years ago

jeffgreenca commented 6 years ago

See #206 for more information.

In part, this uses Get-Item to normalize path separators, which works even if when / and \ are mixed, as in this example:

C:\tools> (Get-Item ".\neovim\Neovim\bin\nvim.exe").FullName
C:\tools\neovim\Neovim\bin\nvim.exe
C:\tools> (Get-Item ".\neovim\Neovim/bin/nvim.exe").FullName
C:\tools\neovim\Neovim\bin\nvim.exe

It also removes the explicit load of VMware.VumAutomation (not supported in PowerCLI core yet)