cleanup: */install.ps1 add out-null to all New-Item calls
[webi-installers/.git] / _webi / bootstrap.ps1
index ace4f3a7a388d931e21f305b35b629ba09c48e56..b6ebd84e6bec1b420bf6f9ecd24b26a68bbeb17a 100644 (file)
@@ -1,5 +1,5 @@
 # Download the latest webi, then install {{ exename }}
-New-Item -Path .local\bin -ItemType Directory -Force
+New-Item -Path .local\bin -ItemType Directory -Force | out-null
 IF ($Env:WEBI_HOST -eq $null -or $Env:WEBI_HOST -eq "") { $Env:WEBI_HOST = "https://webinstall.dev" }
 curl.exe -s -A "windows" "$Env:WEBI_HOST/packages/_webi/webi-pwsh.ps1" -o "$Env:USERPROFILE\.local\bin\webi-pwsh.ps1"
 Set-ExecutionPolicy -Scope Process Bypass