cleanup: */install.ps1 add out-null to all New-Item calls
[webi-installers/.git] / xz / install.ps1
index df9e55f63e3448e26cfbf27edcc48e915d38d89d..38430e4eedc3a263887c58df5a391e43e49f2953 100644 (file)
@@ -39,7 +39,7 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 
         # Settle unpacked archive into place
         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 ".\bin_x86-64\xz.exe" -Destination "$pkg_src_bin"
         Move-Item -Path ".\bin_x86-64\xzdec.exe" -Destination "$pkg_src_bin"
         Copy-Item -Path "$pkg_src_bin\xzdec.exe" -Destination "$pkg_src_bin\unxz.exe"