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