cleanup: */install.ps1 add out-null to all New-Item calls
[webi-installers/.git] / lf / install.ps1
index c3cc37b13212730892475c67e3f6d82a43081840..f6a57769455c0c8c751e751243c996c24f2b45ad 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_bin" -ItemType Directory -Force
+        New-Item "$pkg_src_bin" -ItemType Directory -Force | out-null
         Move-Item -Path ".\lf.exe" -Destination "$pkg_src_bin"
 
     popd