cleanup: */install.ps1 add out-null to all New-Item calls
[webi-installers/.git] / yq / install.ps1
index a9e9b0db0535732c3c2dc0bd175e65e8bae30242..5aa5d931b8c380b316593c8d5db11d8a6e1fa425 100644 (file)
@@ -31,7 +31,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
         & tar xf "$pkg_download"
 
         echo "Install Location: $pkg_src_cmd"
-        New-Item "$pkg_src_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path ".\yq.exe" -Destination "$pkg_src_bin"
 
     popd