X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=rclone%2Finstall.ps1;h=741dca7bcf2c8b08053f2269b9a0cb20738d6826;hb=5a175a7a21c92376e4385b6078305f1ab50a4f81;hp=cac2d7542e29941ccb46e183741041a7fb513792;hpb=cd1e0f64d809eed89c34f0aa8874cfd3e10c919b;p=webi-installers%2F.git diff --git a/rclone/install.ps1 b/rclone/install.ps1 index cac2d75..741dca7 100644 --- a/rclone/install.ps1 +++ b/rclone/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 ".\rclone.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