cleanup: */install.ps1 add out-null to all New-Item calls
[webi-installers/.git] / vim-go / install.ps1
index ff2f7d4a583ea3cdca31a643e2606d33e6f123b1..617ae33479b938b06535ca7a142dafe2af90c4cd 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-go" -Recurse -ErrorAction Ignore
 & git clone --depth=1 https://github.com/fatih/vim-go.git "$Env:USERPROFILE\.vim\pack\plugins\start\vim-go"