cleanup: */install.ps1 add out-null to all New-Item calls
[webi-installers/.git] / vim-go / install.ps1
index 5c72a7c93a744ecf5b456d9cd3e7db8be721d815..617ae33479b938b06535ca7a142dafe2af90c4cd 100644 (file)
@@ -1,4 +1,6 @@
 #!/usr/bin/env pwsh
 
+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"