Open jeffgreenca opened 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)
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:It also removes the explicit load of VMware.VumAutomation (not supported in PowerCLI core yet)