bugfix: don't exclude linux brew
[webi-installers/.git] / xz / install.ps1
index 8d893e3eea3ff1b436da75b2db419cabf12ab470..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"
@@ -51,5 +51,5 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
 }
 
 echo "Copying into '$pkg_dst_cmd' from '$pkg_src_cmd'"
-Remove-Item -Path "$pkg_dst_cmd" -Recurse -ErrorAction Ignore
+Remove-Item -Path "$pkg_dst_cmd" -Recurse -ErrorAction Ignore | out-null
 Copy-Item -Path "$pkg_src" -Destination "$pkg_dst" -Recurse