cleanup: */install.ps1 add out-null to all New-Item calls
[webi-installers/.git] / vim-lastplace / install.ps1
index 749d400fda92f9d7914ea448ff691b38444143a9..5a41edb77cce1dff6daea50b5f9932a8353a02e3 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/env pwsh
 
-New-Item -Path "$Env:USERPROFILE\.vim\pack\plugins\start" -ItemType Directory -Force
+New-Item -Path "$Env:USERPROFILE\.vim\pack\plugins\start" -ItemType Directory -Force | out-null
 
 Remove-Item -Path "$Env:USERPROFILE\.vim\pack\plugins\start\vim-lastplace" -Recurse -ErrorAction Ignore
 & git clone --depth=1 https://github.com/farmergreg/vim-lastplace.git "$Env:USERPROFILE\.vim\pack\plugins\start\vim-lastplace"