X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=mutagen%2Finstall.ps1;h=67a798ea078dc498366d12a1f608e0d50de57ab6;hb=aa61db993471a5ec35fadbc050126735b9fc200a;hp=d967d3519182858d41e7e576d4065afd3e027389;hpb=5fd3e8462175bd63b4c02ccaa97624301034d032;p=webi-installers%2F.git diff --git a/mutagen/install.ps1 b/mutagen/install.ps1 index d967d35..67a798e 100644 --- a/mutagen/install.ps1 +++ b/mutagen/install.ps1 @@ -35,12 +35,12 @@ IF (!(Test-Path -Path "$pkg_src_cmd")) & tar xf "$pkg_download" echo "Install Location: $pkg_src_cmd" - New-Item "$pkg_src_dir" -ItemType Directory -Force + New-Item "$pkg_src_dir" -ItemType Directory -Force | out-null Move-Item -Path ".\*" -Destination "$pkg_src_dir" popd } 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