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