cleanup: */install.ps1 add out-null to all New-Item calls
[webi-installers/.git] / sd / install.ps1
index 8d170ca891d31a19164ed21189d60ef92c96ddc5..4ef0608634801fda466cb3fa8aaaaedc7730e695 100644 (file)
@@ -42,11 +42,11 @@ IF (!(Test-Path -Path "$pkg_src_cmd"))
         # Windows BSD-tar handles zip. Imagine that.
         echo "Unpacking $pkg_download"
         & tar xf "$pkg_download"
-        
+
 
         # 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 "b\*\release\sd.exe" -Destination "$pkg_src_bin"
     # Exit tmp
     popd