cleanup: */install.ps1 add out-null to all New-Item calls
[webi-installers/.git] / sd / install.ps1
index ca86b8abc098854db25a22d5841cee4660d556a8..4ef0608634801fda466cb3fa8aaaaedc7730e695 100644 (file)
@@ -46,7 +46,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 "b\*\release\sd.exe" -Destination "$pkg_src_bin"
     # Exit tmp
     popd