X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=serviceman%2Finstall.ps1;h=8efa0abeaff03bcfc10d48abd1f8623f41b80fc7;hb=aa61db993471a5ec35fadbc050126735b9fc200a;hp=8c1879f7fb34c802e339368b2387d2f9626e5dfc;hpb=bd7309fd6e8009984a6c380a5cc82f30f20584d8;p=webi-installers%2F.git diff --git a/serviceman/install.ps1 b/serviceman/install.ps1 index 8c1879f..8efa0ab 100644 --- a/serviceman/install.ps1 +++ b/serviceman/install.ps1 @@ -45,7 +45,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 ".\serviceman.exe" -Destination "$pkg_src_bin" # Exit tmp @@ -53,5 +53,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